Skip to content

Instantly share code, notes, and snippets.

@borkdude
Created January 21, 2021 17:52
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
else->>
;; credits to @cgrand: https://twitter.com/cgrand/status/1281527501387440128?s=20
(defmacro else->> [& forms] `(->> ~@(reverse forms)))
(def x 2)
(else->>
(if (odd? x) :odd)
(let [y 10])
(do (prn :y))
(when (even? y))
(+ x y))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment