Advertisement
Guest User

Untitled

a guest
May 5th, 2015
211
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. list = (λ (cons nil) (cons 1 (cons 2 (cons 3 nil))))
  2.  
  3. list = (λ (a) (a 1 (λ (b) (b 2 (λ (c) (c 3 0))))))
  4.  
  5. list = (λ (c n) (c 1 (λ (c n) (c 2 (λ (c n) (c 3 (λ (c n) n)))))))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement