Skip to content

Instantly share code, notes, and snippets.

@liuzhe0223
Last active August 29, 2015 14:08
Show Gist options
  • Save liuzhe0223/25a0b018001ef870e2e0 to your computer and use it in GitHub Desktop.
Save liuzhe0223/25a0b018001ef870e2e0 to your computer and use it in GitHub Desktop.
(define (max x y)
(if (> x y)
x
y))
(define (max2Sum x y z)
(+ (max x y) (max y z)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment