Commas are whitespace in Clojure. If you are looking for the unquote operator, it is ~.
user=> (first `(~+ 5)) #<core$_PLUS_ clojure.core$_PLUS_@6f6827b5> peace, Chris On Thu, May 30, 2013 at 5:42 PM, Brian Craft <[email protected]> wrote: > What's up with the 3rd result here? > > user=> (symbol? +) > false > user=> (symbol? clojure.core/+) > false > user=> (symbol? (first `(,+ 5))) > true > user=> (first `(,+ 5)) > clojure.core/+ > > -- > -- > You received this message because you are subscribed to the Google > Groups "Clojure" group. > To post to this group, send email to [email protected] > Note that posts from new members are moderated - please be patient with > your first post. > To unsubscribe from this group, send email to > [email protected] > For more options, visit this group at > http://groups.google.com/group/clojure?hl=en > --- > You received this message because you are subscribed to the Google Groups > "Clojure" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > For more options, visit https://groups.google.com/groups/opt_out. > > > -- Chris Jeris [email protected] freenode/twitter/github: ystael -- -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to [email protected] Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/clojure?hl=en --- You received this message because you are subscribed to the Google Groups "Clojure" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
