unmapping all namespaces in repl

2010-03-30 Thread Istvan Devai
Hi, How can I easily unmap all namespaces in a repl or swank? (so I can continue working as if I have just started up the REPL, no matter what I've use-d previously) Istvan -- You received this message because you are subscribed to the Google Groups Clojure group. To post to this group,

Re: unmapping all namespaces in repl

2010-03-30 Thread Adrian Cuthbertson
On Tue, Mar 30, 2010 at 10:36 AM, Istvan Devai ist...@istvandevai.com wrote: Hi, How can I easily unmap all namespaces in a repl or swank? (so I can continue working as if I have just started up the REPL, no matter what I've use-d previously) Istvan I posted a bit of a lengthy exposition

Re: unmapping all namespaces in repl

2010-03-30 Thread Stuart Sierra
On Mar 30, 4:36 am, Istvan Devai ist...@istvandevai.com wrote: How can I easily unmap all namespaces in a repl or swank? The following will give you a fresh user namespace: (in-ns 'clojure.core) (remove-ns 'user) (ns user) -SS -- You received this message because you are subscribed to the