Created
January 21, 2016 20:48
-
-
Save kopasetik/3d8fe209e0fd651ef186 to your computer and use it in GitHub Desktop.
Clojure rest operator
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ; 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