Skip to content

Instantly share code, notes, and snippets.

@daGrevis
Created January 17, 2014 15:43
Show Gist options
  • Select an option

  • Save daGrevis/8475541 to your computer and use it in GitHub Desktop.

Select an option

Save daGrevis/8475541 to your computer and use it in GitHub Desktop.
(defmacro if2 [expr cond1 cond2]
`(get ~{true `'cond1 false `'cond2} ~expr))
(println (if2 (= 4 (+ 2 2))
(println "true")
(println "false")))
@daGrevis

Copy link
Copy Markdown
Author

WIP.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment