Skip to content

Instantly share code, notes, and snippets.

@rkhmelyuk
Created September 20, 2011 19:42
Show Gist options
  • Save rkhmelyuk/1230115 to your computer and use it in GitHub Desktop.
Save rkhmelyuk/1230115 to your computer and use it in GitHub Desktop.
list of 2 max values of 3
(define (max x y z)
(define a (if (> x y) x y))
(define c (if (> x y) y x))
(define b (if (> c z) c z))
(list a b))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment