aboutsummaryrefslogtreecommitdiffstats
path: root/tests/arithmetic_expected.txt
diff options
context:
space:
mode:
authorBad Diode <bd@badd10de.dev>2024-06-17 18:38:50 +0200
committerBad Diode <bd@badd10de.dev>2024-06-17 18:38:50 +0200
commitc581804c6ffa5824a9b762097a990425007e49cf (patch)
tree516e314a60d537d8e1617f945afc8a12b3e0d61f /tests/arithmetic_expected.txt
parent7fee0fc28809042a2ecbc03f2e1b5b569073982b (diff)
downloadbdl-c581804c6ffa5824a9b762097a990425007e49cf.tar.gz
bdl-c581804c6ffa5824a9b762097a990425007e49cf.zip
Add let/set/struct parsing
Diffstat (limited to 'tests/arithmetic_expected.txt')
-rw-r--r--tests/arithmetic_expected.txt13
1 files changed, 0 insertions, 13 deletions
diff --git a/tests/arithmetic_expected.txt b/tests/arithmetic_expected.txt
deleted file mode 100644
index a2a5a83..0000000
--- a/tests/arithmetic_expected.txt
+++ /dev/null
@@ -1,13 +0,0 @@
1(+ 10 100) -> 110
2(+ 1 -2 3 4) -> 6
3(- 100 75) -> 25
4(- 10 20 30) -> -40
5(* 10 7) -> 70
6(* -1 66) -> -66
7(/ 45 5) -> 9
8(/ 10 5 2) -> 1
9(% 45 5) -> 0
10(% 45 7) -> 3
11(% 120 45) -> 30
12(% 120 45 8) -> 6
13(* 20 (+ 100 (- 50 30) (/ 300 3)) 10) -> 44000