Arc Forumnew | comments | leaders | submitlogin
Access REPL while serving web pages
15 points by lojic 6078 days ago | 1 comment
Is it possible to access the REPL while running (asv) ? I'd like to modify functions and add new ones while the web server is running if possible.


3 points by mwijns 6077 days ago | link

You could run the server in a seperate thread with (= mythread (thread asv)). And stop it later on with (break-thread mythread) I guess.

-----