Skip to content

Instantly share code, notes, and snippets.

@mmower
Created August 7, 2013 10:47
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 mmower/43a7497569f9e9129789 to your computer and use it in GitHub Desktop.
Save mmower/43a7497569f9e9129789 to your computer and use it in GitHub Desktop.
(defmacro randomly-2 [& exprs] (nth exprs (rand-int (count exprs))))
(defn do-randomly
[]
(randomly-2 (println "one") (println "two") (println "three")))
(do-randomly)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment