aboutsummaryrefslogtreecommitdiff
path: root/tests/math/division/happy.neb
diff options
context:
space:
mode:
Diffstat (limited to 'tests/math/division/happy.neb')
-rw-r--r--tests/math/division/happy.neb8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/math/division/happy.neb b/tests/math/division/happy.neb
new file mode 100644
index 0000000..dc0692d
--- /dev/null
+++ b/tests/math/division/happy.neb
@@ -0,0 +1,8 @@
+(print
+ (concat
+ (->string (/ 20 5)) " "
+ (->string (/ 3.6 2)) " "
+ (->string (/ 4 2.5)) " "
+ (->string (/ 1.1 4.4))))
+
+; 4 1.8 1.6 0.25