Drop backslash from lambda definitions
This commit is contained in:
@ -1,21 +1,21 @@
|
||||
compose = \f g x : f (g x)
|
||||
compose = f g x : f (g x)
|
||||
|
||||
succ = y (\self :
|
||||
succ = y (self :
|
||||
triage
|
||||
1
|
||||
t
|
||||
(triage
|
||||
(t (t t))
|
||||
(\_ tail : t t (self tail))
|
||||
(_ tail : t t (self tail))
|
||||
t))
|
||||
|
||||
size = (\x :
|
||||
(y (\self x :
|
||||
size = (x :
|
||||
(y (self x :
|
||||
compose succ
|
||||
(triage
|
||||
(\x : x)
|
||||
(x : x)
|
||||
self
|
||||
(\x y : compose (self x) (self y))
|
||||
(x y : compose (self x) (self y))
|
||||
x)) x 0))
|
||||
|
||||
size size
|
||||
|
Reference in New Issue
Block a user