Skip to content

Instantly share code, notes, and snippets.

@Torvaney
Created June 5, 2018 11:26
Show Gist options
  • Save Torvaney/911a4d5b631bbf584b38dcb6cc44aaa9 to your computer and use it in GitHub Desktop.
Save Torvaney/911a4d5b631bbf584b38dcb6cc44aaa9 to your computer and use it in GitHub Desktop.
Infix functions in clojure
(defmacro $
([x] x)
([f x] `(~f ~x))
([x f & args] `(~f ($ ~x) ($ ~@args))))
;; Examples
($ 1 + 5)
; 6
($ 1 + 5 + 2)
; 8
($ 1 + 5 - 2)
; 4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment