Skip to content

Instantly share code, notes, and snippets.

@kopasetik
Created January 21, 2016 20:48
Show Gist options
  • Save kopasetik/3d8fe209e0fd651ef186 to your computer and use it in GitHub Desktop.
Save kopasetik/3d8fe209e0fd651ef186 to your computer and use it in GitHub Desktop.
Clojure rest operator
; rest operator example
(defn print-the-rest
;prints the rest of the collection
[[a b & remaining-values]]
(doall (map println remaining-values)))
(print-the-rest ["celebration" "can you feel it" "fantasy" "september" "boogie wonderland" "getaway"])
;=> fantasy
;=> september
;=> boogie wonderland
;=> getaway
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment