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.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/booleans_expected.txt b/tests/booleans_expected.txt
index f47d32f..43f67e5 100644
--- a/tests/booleans_expected.txt
+++ b/tests/booleans_expected.txt
@@ -33,11 +33,11 @@
33(if (or false false) (+ 1 2 3) (+ 7 8 9)) -> 24 33(if (or false false) (+ 1 2 3) (+ 7 8 9)) -> 24
34(if (or (+ 1 2 3) false) (+ 1 2 3) (+ 7 8 9)) -> 6 34(if (or (+ 1 2 3) false) (+ 1 2 3) (+ 7 8 9)) -> 6
35(if true 7) -> 7 35(if true 7) -> 7
36(if false 7) -> () 36(if false 7) ->
37(cond ((and true true true) 1) ((or true true false) 2) (else 3)) -> 1 37(cond ((and true true true) 1) ((or true true false) 2) (else 3)) -> 1
38(cond ((and true true false) 1) ((or true true false) 2) (else 3)) -> 2 38(cond ((and true true false) 1) ((or true true false) 2) (else 3)) -> 2
39(cond ((and true true false) 1) ((or false false false) 2) (else 3)) -> 3 39(cond ((and true true false) 1) ((or false false false) 2) (else 3)) -> 3
40(cond ((and true true true) 1) ((or true true false) 2)) -> () 40(cond ((and true true true) 1) ((or true true false) 2)) ->
41(cond ((and true true true) (+ 1 2 3)) ((or true true false) 2) (else 3)) -> 6 41(cond ((and true true true) (+ 1 2 3)) ((or true true false) 2) (else 3)) -> 6
42(< 1 2 3) -> true 42(< 1 2 3) -> true
43(< 3 2 1) -> false 43(< 3 2 1) -> false