Skip to content

Instantly share code, notes, and snippets.

@yanateras
Created February 26, 2024 07:11
Show Gist options
  • Save yanateras/820576c15134afa16831d9badc443e4d to your computer and use it in GitHub Desktop.
Save yanateras/820576c15134afa16831d9badc443e4d to your computer and use it in GitHub Desktop.
Threading macro for Common Lisp
(defmacro -> (&rest forms)
(reduce #'(lambda (xs x) (append x (list xs))) forms))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment