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.txt5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/booleans_expected.txt b/tests/booleans_expected.txt
index d05d314..f0612b8 100644
--- a/tests/booleans_expected.txt
+++ b/tests/booleans_expected.txt
@@ -41,3 +41,8 @@
41(if (or (+ 1 2 3) false) (+ 1 2 3) (+ 7 8 9)) -> 6 41(if (or (+ 1 2 3) false) (+ 1 2 3) (+ 7 8 9)) -> 6
42(if true 7) -> 7 42(if true 7) -> 7
43(if false 7) -> () 43(if false 7) -> ()
44(cond ((and true true true) 1) ((or true true false) 2) (else 3)) -> 1
45(cond ((and true true false) 1) ((or true true false) 2) (else 3)) -> 2
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)) -> ()
48(cond ((and true true true) (+ 1 2 3)) ((or true true false) 2) (else 3)) -> 6