Skip to content

Instantly share code, notes, and snippets.

@whamtet
Created June 15, 2024 15:41
Show Gist options
  • Save whamtet/0e062494375d0f24517c8ab240d03c22 to your computer and use it in GitHub Desktop.
Save whamtet/0e062494375d0f24517c8ab240d03c22 to your computer and use it in GitHub Desktop.
(defn- mk* [m [a b & rest]]
(cond
(keyword? a) (recur (assoc m a b) rest)
a (recur (assoc m (keyword a) (symbol a)) (list* b rest))
:else m))
(defmacro mk [& syms]
(mk* {} syms))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment