Re: newbie question about symbols

2013-05-30 Thread Brian Craft
ah, thanks. On Thursday, May 30, 2013 2:48:00 PM UTC-7, cjeris wrote: > > Commas are whitespace in Clojure. If you are looking for the unquote > operator, it is ~. > > user=> (first `(~+ 5)) > # > > peace, Chris > > > On Thu, May 30, 2013 at 5:42 PM, Brian Craft > > wrote: > >> What's up with t

Re: newbie question about symbols

2013-05-30 Thread Chris Jeris
Commas are whitespace in Clojure. If you are looking for the unquote operator, it is ~. user=> (first `(~+ 5)) # peace, Chris On Thu, May 30, 2013 at 5:42 PM, Brian Craft wrote: > What's up with the 3rd result here? > > user=> (symbol? +) > false > user=> (symbol? clojure.core/+) > false > u

newbie question about symbols

2013-05-30 Thread Brian Craft
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,