Skip to content

Instantly share code, notes, and snippets.

@BaseCase
Created February 19, 2010 01:02
Show Gist options
  • Save BaseCase/308291 to your computer and use it in GitHub Desktop.
Save BaseCase/308291 to your computer and use it in GitHub Desktop.
(define (cons x y)
(define (dispatch m)
(cond ((= m 0) x)
((= m 1) y)
(else (error "Argument not 0 or 1"))))
dispatch)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment