Created
May 31, 2015 14:21
-
-
Save lucasas/f6df849adffa3c6c7efc to your computer and use it in GitHub Desktop.
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
(def elements [0 1 2 3 5]) | |
(let [[head & tail] elements] | |
(println "head: " head " tail: " tail)) ; => "head: 0 tail: (1 2 3 5)" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment