From fdf35536b66499884dd5b4e1740ac67e5cebb1a2 Mon Sep 17 00:00:00 2001 From: tzlil Date: Fri, 14 Apr 2023 23:46:53 +0300 Subject: add homework material --- tests/examples/bools-and-t-f.lam | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 tests/examples/bools-and-t-f.lam (limited to 'tests/examples/bools-and-t-f.lam') diff --git a/tests/examples/bools-and-t-f.lam b/tests/examples/bools-and-t-f.lam new file mode 100644 index 0000000..fd9a29c --- /dev/null +++ b/tests/examples/bools-and-t-f.lam @@ -0,0 +1,16 @@ +(\ true false and or not . + + and true false + + -- Should reduce to false, i.e., \ x y . y +) +-- true +(\ x y . x) +-- false +(\ x y . y) +-- and +(\ p q . p q p) +-- or +(\ p q . p p q) +-- not +(\ p x y . p y x) -- cgit 1.4.1