diff options
author | don bright <hugh.m.bright@gmail.com> | 2012-08-02 03:03:39 (GMT) |
---|---|---|
committer | don bright <hugh.m.bright@gmail.com> | 2012-08-02 03:03:39 (GMT) |
commit | faa90661256f7fcb1227af90c764bd0e7c35f05c (patch) | |
tree | ae6b876048e36c31aae4fba14cc4fc0d2bc93a4e /testdata | |
parent | b942c728c1ac532d65bd780ba2a124dc0fb036b1 (diff) | |
parent | 83879ab41c368f674ff771387f499dc36ce124dd (diff) |
Merge branch 'master' of github.com:openscad/openscad into mingw_installer
Diffstat (limited to 'testdata')
-rw-r--r-- | testdata/scad/misc/echo-tests.scad | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/testdata/scad/misc/echo-tests.scad b/testdata/scad/misc/echo-tests.scad index c42a67e..6753c61 100644 --- a/testdata/scad/misc/echo-tests.scad +++ b/testdata/scad/misc/echo-tests.scad @@ -12,3 +12,7 @@ echo(vec = [1,2,3]); echo(range = [0:2]); echo(str("string generated by str()")); + +// https://github.com/openscad/openscad/issues/158 rept by nop head +// 0.8 should print 0.8 not 0.80000...004 (regardless of internal representation) +echo(0.8); |