Skip to content

Instantly share code, notes, and snippets.

@robertpostill
Created November 5, 2010 07:31
Show Gist options
  • Save robertpostill/663781 to your computer and use it in GitHub Desktop.
Save robertpostill/663781 to your computer and use it in GitHub Desktop.
First part of SICP exercise 1.3
(define (largest-of-the-two x y)
(if (>= x y)
x
y))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment