Skip to content

Instantly share code, notes, and snippets.

@ashishnegi
Created June 18, 2014 05:11
Show Gist options
  • Save ashishnegi/85f3794ce01164a09a1e to your computer and use it in GitHub Desktop.
Save ashishnegi/85f3794ce01164a09a1e to your computer and use it in GitHub Desktop.
lists in clojure
;// 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