Advertisement
Guest User

Untitled

a guest
Jun 27th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. let pair x y = fun z -> z x y
  2. let x1 = fun y -> pair y y in
  3.   let x2 = fun y -> x1 (x1 y) in
  4.     let x3 = fun y -> x2 (x2 y) in
  5.       let x4 = fun y -> x3 (x3 y) in
  6.         x4 (fun z -> z)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement