Re: REPL integration in a existing java project

2009-10-02 Thread Fredrik Appelberg
On Thu, Oct 1, 2009 at 2:29 PM, DomS dominik.schaefe...@googlemail.comwrote: Hello all, I'm trying to integrate an REPL in a existing java project, but i dont know how it works or where to start. At first it should only have the functionality from an ordinary clj repl. Later we want to

Re: REPL integration in a existing java project

2009-10-02 Thread Marc Downie
We got started by staring at: http://github.com/pmf/clojure-jsr223 Although familiarity with the suboptimal jsr223 spec helped. (Unlike a server socket, this approach means that you can share parts of your host directly with the Clojure environment by binding var's. I find this either is, or at

REPL integration in a existing java project

2009-10-01 Thread DomS
Hello all, I'm trying to integrate an REPL in a existing java project, but i dont know how it works or where to start. At first it should only have the functionality from an ordinary clj repl. Later we want to extend it with some functions and macros, to control our software via console. Help