I'm writing a Clojure source file. I thought that C-M-x (slime-eval-
defun) would send the current toplevel form to the REPL but I was
wrong. For instance, if I evaluate:
(ns test
(:import (java.net InetAddress)))
from the source file and then I evaluate *ns* at the REPL, I get:
#<Namespace user>
whilst if I copy and paste the form at the REPL and then I evaluate
*ns* , I get:
#<Namespace test>
which is what I would have expected in the first instance. What am I
missing? (I'm a SLIME newbie)
Thanks
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Clojure" group.
To post to this group, send email to [email protected]
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
-~----------~----~----~----~------~----~------~--~---