What makes a good REPL?
vvvvalvalval.github.io
What makes a good REPL?
1–10 of 177 posts
Re: What makes a good REPL?
#2Re: What makes a good REPL?
#3Re: What makes a good REPL?
#4Re: What makes a good REPL?
#5Matlab has a nice sort-of-repl feature which I miss in every other language: you can separate the code in a file into several blocks and then execute the current block (the one with which contained the cursor) with ctrl+enter. With this feature you still have the full text editing capabilities but you also have a flexibility you get from a repl.
Picking them all up is a tall order though.
Re: What makes a good REPL?
#6Re: What makes a good REPL?
#7There's a lot of excitement about compiled languages lately, and many seem to wonder if interpreted languages are dying. Unfortunately I don't see the value of a good REPL brought up in those conversations very often.
Re: What makes a good REPL?
#8There's a lot of excitement about compiled languages lately, and many seem to wonder if interpreted languages are dying. Unfortunately I don't see the value of a good REPL brought up in those conversations very often.
I like a good interpreted language as much as the next guy, but there are REPLs for compiled languages. Pretty sure Scala has one and maybe Haskell
And it seems nobody ever tries hooking a REPL up to a running system anymore.
Re: What makes a good REPL?
#9Matlab has a nice sort-of-repl feature which I miss in every other language: you can separate the code in a file into several blocks and then execute the current block (the one with which contained the cursor) with ctrl+enter. With this feature you still have the full text editing capabilities but you also have a flexibility you get from a repl.
Lisp + Emacs + SLIME: miss no longer. Picking them all up is a tall order though.
Re: What makes a good REPL?
#10There's a lot of excitement about compiled languages lately, and many seem to wonder if interpreted languages are dying. Unfortunately I don't see the value of a good REPL brought up in those conversations very often.
I like a good interpreted language as much as the next guy, but there are REPLs for compiled languages. Pretty sure Scala has one and maybe Haskell