Skip to content

Instantly share code, notes, and snippets.

@mfikes
Last active March 30, 2019 00:27
Show Gist options
  • Save mfikes/f4eda0abcf2f6ad60db64e94b8d47178 to your computer and use it in GitHub Desktop.
Save mfikes/f4eda0abcf2f6ad60db64e94b8d47178 to your computer and use it in GitHub Desktop.
(ns foo.core)
(defmacro m []
`(foo.core/f))
(ns foo.core
(:require-macros foo.core))
(defn f []
(when (< 0.5 (rand))
(foo.core/m)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment