aboutsummaryrefslogtreecommitdiffstats
path: root/tests/booleans_expected.txt
diff options
context:
space:
mode:
Diffstat (limited to 'tests/booleans_expected.txt')
-rw-r--r--tests/booleans_expected.txt12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/booleans_expected.txt b/tests/booleans_expected.txt
index f0612b8..5919767 100644
--- a/tests/booleans_expected.txt
+++ b/tests/booleans_expected.txt
@@ -46,3 +46,15 @@
46(cond ((and true true false) 1) ((or false false false) 2) (else 3)) -> 3 46(cond ((and true true false) 1) ((or false false false) 2) (else 3)) -> 3
47(cond ((and true true true) 1) ((or true true false) 2)) -> () 47(cond ((and true true true) 1) ((or true true false) 2)) -> ()
48(cond ((and true true true) (+ 1 2 3)) ((or true true false) 2) (else 3)) -> 6 48(cond ((and true true true) (+ 1 2 3)) ((or true true false) 2) (else 3)) -> 6
49(< 1 2 3) -> true
50(< 3 2 1) -> false
51(> 1 2 3) -> false
52(> 3 2 1) -> true
53(= 1 2 3) -> false
54(= 3 2 1) -> false
55(= 3 3 3) -> true
56(= (+ 1 2) 3 (- 6 3)) -> true
57(< 1 1 3) -> false
58(<= 1 1 3) -> true
59(> 3 3 1) -> false
60(>= 3 3 1) -> true