aboutsummaryrefslogtreecommitdiffstats
path: root/tests/arithmetic_expected.txt
blob: a2a5a839695146751cce086797c0b7f1868fc554 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
(+ 10 100) -> 110
(+ 1 -2 3 4) -> 6
(- 100 75) -> 25
(- 10 20 30) -> -40
(* 10 7) -> 70
(* -1 66) -> -66
(/ 45 5) -> 9
(/ 10 5 2) -> 1
(% 45 5) -> 0
(% 45 7) -> 3
(% 120 45) -> 30
(% 120 45 8) -> 6
(* 20 (+ 100 (- 50 30) (/ 300 3)) 10) -> 44000