Skip to content

Instantly share code, notes, and snippets.

@ku1ik
Last active October 30, 2015 15:51
Show Gist options
  • Save ku1ik/92a5ec0a8217bbc2c64f to your computer and use it in GitHub Desktop.
Save ku1ik/92a5ec0a8217bbc2c64f to your computer and use it in GitHub Desktop.
(defmacro events [one two & items] (prn one two) (set items))
(events 1 2 3 4 5 6) ; => #{3 4 5 6}
1 2 ; <- printed
(defmacro events [one two & items] (prn one two) (set items))
(events 1 2 3 4 5 6) ; => #{5 6}
3 4 ; <- printed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment