-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathycombinator.mana
40 lines (29 loc) · 1.13 KB
/
ycombinator.mana
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
28
29
30
31
32
33
34
35
36
37
38
39
40
------------------------------------------------------------------------------
--
------------------------------------------------------------------------------
import Core
------------------------------------------------------------------------------
--
------------------------------------------------------------------------------
type Mu a = Mu (Mu a -> a)
------------------------------------------------------------------------------
--
------------------------------------------------------------------------------
w : (Mu a -> a) -> a
w muAToA = muAToA (Mu muAToA)
u : (a -> a) -> Mu a -> a
u f (Mu muAToA) = f (w muAToA)
y : (a -> a) -> a
y f = w (u f)
-- = u f (Mu (u f))
-- = f (w (u f))
------------------------------------------------------------------------------
--
------------------------------------------------------------------------------
y' : (a -> a) -> a
y' = w << u
------------------------------------------------------------------------------
-- as = Cons 'a' as
------------------------------------------------------------------------------
as = y (Cons 'a')
bs = y' (Cons 'b')