Skip to content

Instantly share code, notes, and snippets.

@vendethiel
Created April 17, 2024 08:46
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 vendethiel/590ed0c489b9f069c1944958541fae23 to your computer and use it in GitHub Desktop.
Save vendethiel/590ed0c489b9f069c1944958541fae23 to your computer and use it in GitHub Desktop.
(defmacro -> (&rest form)
(reduce (lambda (xs x)
(if (consp x)
(append xs x)
(list x xs)))
form))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment