Skip to content

Instantly share code, notes, and snippets.

@brake
Created August 19, 2016 20:55
Show Gist options
  • Select an option

  • Save brake/e8cc94d8f92c7c38a232bad745e3cd9b to your computer and use it in GitHub Desktop.

Select an option

Save brake/e8cc94d8f92c7c38a232bad745e3cd9b to your computer and use it in GitHub Desktop.
Clojure macro to organize an infinite loop
(defmacro forever [& body]
`(while true ~@body))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment