Re: [Chicken-users] compiled program + REPL ?

2016-10-24 Thread Evan Hanson
Hi there, I'd say (2). IME the nrepl egg from the fine folks at Adellica is a nice option for this: http://wiki.call-cc.org/eggref/4/nrepl Possibly also (5) with some blood, sweat and tears, but AFAIK nothing like (4) exists. Cheers, Evan ___

Re: [Chicken-users] compiled program + REPL ?

2016-10-24 Thread Jordan Henderson
Seems like you could compile in a REPL, if that's what you wanted. eval() is a function you can call, you know. To make changes and recompile, you'd have to have the compiler installed on the target system. On Mon, Oct 24, 2016 at 2:27 PM, founda happyplace wrote: > Hi Chicken

[Chicken-users] compiled program + REPL ?

2016-10-24 Thread founda happyplace
Hi Chicken Friends! What is possible in terms of connecting to a REPL supplied by a running compiled Chicken program? Is it one of the below? --1-- It's the same as any compiled C program, there's no REPL to connect to. Once you've compiled to an executable, you've exited lisp-land. But at least