From ed1f406102738812fafa5e49ee131fe06c177687 Mon Sep 17 00:00:00 2001 From: Bad Diode Date: Wed, 13 Oct 2021 16:44:17 +0200 Subject: Add a lot of primitive types --- tests/booleans_expected.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/booleans_expected.txt') 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 @@ (if (or false false) (+ 1 2 3) (+ 7 8 9)) -> 24 (if (or (+ 1 2 3) false) (+ 1 2 3) (+ 7 8 9)) -> 6 (if true 7) -> 7 -(if false 7) -> () +(if false 7) -> (cond ((and true true true) 1) ((or true true false) 2) (else 3)) -> 1 (cond ((and true true false) 1) ((or true true false) 2) (else 3)) -> 2 (cond ((and true true false) 1) ((or false false false) 2) (else 3)) -> 3 -(cond ((and true true true) 1) ((or true true false) 2)) -> () +(cond ((and true true true) 1) ((or true true false) 2)) -> (cond ((and true true true) (+ 1 2 3)) ((or true true false) 2) (else 3)) -> 6 (< 1 2 3) -> true (< 3 2 1) -> false -- cgit v1.2.1