Skip to content

Instantly share code, notes, and snippets.

@kouddy
Created March 22, 2015 16:50
Show Gist options
  • Save kouddy/d6c8b311238d4017b88a to your computer and use it in GitHub Desktop.
Save kouddy/d6c8b311238d4017b88a to your computer and use it in GitHub Desktop.
(define (make-interval a b) (cons a b))
(define (lower-bound i) (car i))
(define (upper-bound i) (cdr i))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment