Re: getting a new socket at the repl

2012-08-27 Thread Denis Labaye
On Mon, Aug 27, 2012 at 11:56 PM, Denis Labaye wrote: > > > On Mon, Aug 27, 2012 at 11:23 PM, larry google groups < > lawrencecloj...@gmail.com> wrote: > >> I am in emacs at a clojure swank slime repl. I do this: >> >> user> (def ss (Socket. "localhost", 4)) >> #'user/ss >> >> user> ss >> # >

Re: getting a new socket at the repl

2012-08-27 Thread Denis Labaye
On Mon, Aug 27, 2012 at 11:23 PM, larry google groups < lawrencecloj...@gmail.com> wrote: > I am in emacs at a clojure swank slime repl. I do this: > > user> (def ss (Socket. "localhost", 4)) > #'user/ss > > user> ss > # > > > All is good. All is working. I now do this, which is exactly the s

getting a new socket at the repl

2012-08-27 Thread larry google groups
I am in emacs at a clojure swank slime repl. I do this: user> (def ss (Socket. "localhost", 4)) #'user/ss user> ss # All is good. All is working. I now do this, which is exactly the same thing: (def client5 (Socket. "localhost" 42000)) I get: java.lang.reflect.InvocationTargetExceptio