Clojure has a network REPL, which enables some very useful features.
The two features which I’d like to use are:
-
Send code to the REPL through network
We don’t need to type to the terminal, instead we can send code from an editor/IDE. -
Get back results from the REPL
We are not bound to display results in the terminal and it’s possible to use any UI. Displaying bigger data structures can be made more convenient (Think of something like watch variables in debuggers, where you can collapse and open parts of the data structures)
Maybe there are other cool applications as well which I missed, but these two features would already make the REPL more convenient and useful.
If I’m not mistaken there is nothing like this in the Scala ecosystem.
What do you think could this be added to the Scala REPL?