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
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
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
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
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