bug#40067: clojure does not find namespace "clojure.set"

2023-05-04 Thread Eugen Stan
I can confirm solution from Alex ter Weele . This issue can be closed. -- Eugen Stan +40770 941 271 / https://www.netdava.combegin:vcard fn:Eugen Stan n:Stan;Eugen email;internet:eugen.s...@netdava.com tel;cell:+40720898747 x-mozilla-html:FALSE url:https://www.netdava.com version:2.1 end:vcard

bug#40067: clojure does not find namespace "clojure.set"

2021-03-15 Thread Alex ter Weele
Hi Jesse, I found that dir works once the namespace has been "require"d, so this works: user=> (require 'clojure.set) nil user=> (dir clojure.set) difference index ... Given that, I'm not sure why (dir clojure.string) works, but I'm guessing that once clojure starts, something has already done

bug#40067: clojure does not find namespace "clojure.set"

2020-03-14 Thread Jesse Gibbons
A simple way to tell if clojure can find a namespace is to use the dir macro on the repl. The following command should output items in the clojure.string namespace followed by the items in the clojure.set namespace: java -jar `guix build clojure`/share/java/clojure.jar < Execution error at user/ev