On Tue, May 12, 2015 at 7:55 PM, <piastkra...@gmail.com> wrote:

> If I:
>
> git clone https://github.com/overtone/overtone.git
>
> cd overtone
>
> lein repl
>
> and then at the REPL, I try to load Overtone:
> ...
> user=> (resolve 'overtone.studio.inst)
>

You want require, not resolve, in order to load the namespace.

Depending on exactly what you want to do, you may want:

    (require '[overtone.studio.inst :refer :all])

which will load the namespace and import all of its symbols into the user
namespace.
-- 
Sean A Corfield -- (904) 302-SEAN
An Architect's View -- http://corfield.org/
World Singles, LLC. -- http://worldsingles.com/

"Perfection is the enemy of the good."
-- Gustave Flaubert, French realist novelist (1821-1880)

-- 
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 members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to