Archive of published articles on February, 2010

Back home

Clojure syntax

2/02/2010

Making a note for myself:

(1 2 3 4) // list
[1 2 3 fred] // vector
{:a 1 :b 2 :c 3}, {1 "a" 2 "b"} // map key/value
#{a b c} // set
No Comments