You can try the following: (defn trd[] (let [f #(binding [*ns* *ns*] (in-ns 'user) (eval '(tst)))] (. (Thread. f) start) ))
This sets the namespace for your new thread before it evals. You also might want to take a look at clojure.lang.Repl for an example of how to create a REPL, also repl.clj in the group files for a swing REPL. --~--~---------~--~----~------------~-------~--~----~ 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 To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/clojure?hl=en -~----------~----~----~----~------~----~------~--~---