problems using exploding-fish
rwillig opened this issue · 1 comments
rwillig commented
I'm relatively new to clojure and I'm somewhat confused by my inability to use the exploding-fish library though I've successfully used other libraries. I checked out the project from git and used lein to test, compile, jar and repl the library. however, whenever I try to :use or require exploding-fish I get an error of the sort:
(:use (org.bovinegenius exploding-fish))
CompilerException java.lang.ClassNotFoundException: org.bovinegenius, compiling:(NO_SOURCE_PATH:1)
any advice you can give would be greatly appreciated
wtetzner commented
You only use the (:use (org.bovinegenius exploding-fish)) syntax in an (ns ...) form. If you want to call 'use' as a function, try this instead: (use '(org.bovinegenius exploding-fish)).