aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorBad Diode <bd@badd10de.dev>2021-10-10 16:12:36 +0200
committerBad Diode <bd@badd10de.dev>2021-10-10 16:12:36 +0200
commit2bbafc053adfd4af01503d3163cba71698855fb0 (patch)
tree747ca8ea3297b291d8456813cb04d03a9995421a /tests
parent4e4d5373328276ea6d49a60242555d5db03158ff (diff)
downloadbdl-2bbafc053adfd4af01503d3163cba71698855fb0.tar.gz
bdl-2bbafc053adfd4af01503d3163cba71698855fb0.zip
Add modulo primitive and stubs for other procs
Diffstat (limited to 'tests')
-rw-r--r--tests/arithmetic_expected.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/arithmetic_expected.txt b/tests/arithmetic_expected.txt
index 16445dc..a2a5a83 100644
--- a/tests/arithmetic_expected.txt
+++ b/tests/arithmetic_expected.txt
@@ -6,4 +6,8 @@
6(* -1 66) -> -66 6(* -1 66) -> -66
7(/ 45 5) -> 9 7(/ 45 5) -> 9
8(/ 10 5 2) -> 1 8(/ 10 5 2) -> 1
9(% 45 5) -> 0
10(% 45 7) -> 3
11(% 120 45) -> 30
12(% 120 45 8) -> 6
9(* 20 (+ 100 (- 50 30) (/ 300 3)) 10) -> 44000 13(* 20 (+ 100 (- 50 30) (/ 300 3)) 10) -> 44000