Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

car cdr cons from little LISPer

// description of your code here

   1  
   2  (define cons
   3   (lambda (u v)
   4     (lambda (b)
   5       (cond (b u)
   6       (#t v)))))
   7  (define lunch (cons 'apple '()))
   8  (define car (lambda (l) (l #t)))
   9  (define cdr (lambda (l) (l #f)))
  10  
  11  
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS