Created
June 18, 2014 05:11
-
-
Save ashishnegi/85f3794ce01164a09a1e to your computer and use it in GitHub Desktop.
lists in clojure
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
;// paste this code in REPL and enjoy | |
'(1, 2, 3) ;// list of numbers | |
'("ashish" "negi" "is" "writing" "this" "line") ;// you do not need comma anywhere in clojure :) | |
'("ashish" 1 "negi" 2) ;// lists can have multiple |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment