Skip to content

Instantly share code, notes, and snippets.

Created May 1, 2011 18:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/950732 to your computer and use it in GitHub Desktop.
Save anonymous/950732 to your computer and use it in GitHub Desktop.
(cond
(and (< 70 x 90) (< 20 y 40))
(println "Seattle")
(and (< 20 x 25) (< 200 y 210))
(println "San Francisco"))
vs
(cond
(and (< 70 x 90) (< 20 y 40))
(println "Seattle")
(and (< 20 x 25) (< 200 y 210))
(println "San Francisco"))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment