diff options
author | Marius Kintel <marius@kintel.net> | 2011-11-09 17:38:52 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2011-11-09 17:38:52 (GMT) |
commit | e65ea2d6515f205526c9cba77ad0831e3b4077d1 (patch) | |
tree | 18e40bf0a2933d7507dbe6f47a787d7808c7ff31 /testdata | |
parent | 5c30bcb691729b52c8456f57b42d6514a9325cf8 (diff) |
Only quote strings when using the stream operator. Fixes #35
Diffstat (limited to 'testdata')
-rw-r--r-- | testdata/scad/misc/echo-tests.scad (renamed from testdata/scad/features/echo-tests.scad) | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/testdata/scad/features/echo-tests.scad b/testdata/scad/misc/echo-tests.scad index b07d444..c42a67e 100644 --- a/testdata/scad/features/echo-tests.scad +++ b/testdata/scad/misc/echo-tests.scad @@ -10,3 +10,5 @@ echo(r); echo(vec = [1,2,3]); echo(range = [0:2]); + +echo(str("string generated by str()")); |