Re: Unable to resolve var: subset? in this context (NO_SOURCE_FILE:1)

2011-07-14 Thread Tuba Lambanog
Thank you! Tuba On Thu, Jul 14, 2011 at 2:24 PM, Daniel Janus wrote: > subset? is in the clojure.set namespace, so you must (use 'clojure.set) > before you can > use subset? unqualified. > > -- > You received this message because you are subscribed to the Google > Groups "Clojure" group. > To po

Odp: Unable to resolve var: subset? in this context (NO_SOURCE_FILE:1)

2011-07-14 Thread Daniel Janus
subset? is in the clojure.set namespace, so you must (use 'clojure.set) before you can use subset? unqualified. -- 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 mem

Unable to resolve var: subset? in this context (NO_SOURCE_FILE:1)

2011-07-14 Thread Tuba Lambanog
Hello, I'm getting an unresolved var error when I do (doc subset?), thus: Interactive Clojure console. Starting... Clojure 1.2.0 user=> (doc subset?) java.lang.Exception: Unable to resolve var: subset? in this context (NO_SOURCE_FILE:1) I'm able to do doc on other forms. M

Re: NO_SOURCE_FILE

2009-09-22 Thread Timothy Pratley
There could be a verbose flag which would print the form in which the error occurs. This shouldn't be default though as the forms can be quite large. On Sep 23, 3:37 pm, Raoul Duke wrote: > hi, > > is there perchance some way Clojure's REPL might be able to print out > more information in such

NO_SOURCE_FILE

2009-09-22 Thread Raoul Duke
hi, is there perchance some way Clojure's REPL might be able to print out more information in such situations? i don't know what precisely the situations are. it is frustrating to not get more information to help debug something. seems like it might be about anonymous fns or some such? thanks fo