On Sun, Mar 25, 2012 at 8:36 PM, Cedric Greevey <cgree...@gmail.com> wrote:
> How often do we get "What are the differences among 100, 0144, and
> 0x64, and which should I use when?" ;)

Nevermind:

#^{:foo 42} thingy vs. ^{:foo 42} thingy;
(deref foo) vs. @foo;
#'bar vs. (var bar);
#(+ %2 (* 2 %1)) vs. (fn [a b] (+ b (* 2 a)));
'quux vs. (quote quux);
:user/baz vs. ::baz (in ns user);
(cons mumble some-seq) vs. (conj some-seq mumble);
and probably others. :)

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en

Reply via email to