about summary refs log tree commit diff
path: root/tests/examples/nums-isZero-one.lam
blob: 67e54ddd2c6616de9aa78d54c861b7228891677c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
(\ zero one two three succ plus mult pred minus isZero .

    isZero one
    -- Should evaluate to false, i.e., \ x y . y
)

-- zero
(\ f x . x)
-- one
(\ f x . f x)
-- two
(\ f x . f (f x))
-- three
(\ f x . f (f (f x)))

-- succ
(\n f x . f (n f x))
-- plus
(\m n f x . m f (n f x))
-- mult
(\m n f . m (n f))
-- pred
(\n f x . n (\ g h . h (g f)) (\ u . x) (\ u . u))
-- minus
(\ m n . n (\n f x . n (\ g h . h (g f)) (\ u . x) (\ u . u)) m)
-- isZero
(\ n . n (\ x . (\ x y . y)) (\ x y . x))