Skip to content

Instantly share code, notes, and snippets.

@KirinDave
Created October 26, 2010 22:17
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 KirinDave/b26834d128610b428f2b to your computer and use it in GitHub Desktop.
Save KirinDave/b26834d128610b428f2b to your computer and use it in GitHub Desktop.
(defmacro protocol-machine [& forms]
(let [stateforms (filter #(= (str (first %)) "defstate") forms)
names (map second stateforms)]
`(do (declare ~@names) ~@forms)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment