|
|
|
|
|
by valenterry
1870 days ago
|
|
Scala for example is statically typed and had a REPL from day 1. However, when using a language with a great typesystem, the need for a REPL is just much less. You mostly don't need to try things out because the types guide you. Therefore these languages might have a REPL and it might be useful, but REPL-driven is not really necessary. > I always wish that it would become unnecessary to have to choose between stability and extensibility Stability, extensibility, low language-complexity. Pick 2. |
|
Stability - one of Clojure's core tenets.
Low language complexity - not much more than EDN and everything is an expression, plus a few extras like destructuring. Certainly simpler than any other language I have used.
Extensibility - again, one of Clojure's strong points with macros.
As for "Type systems removing the value of a repl" again, I disagree. Repl driven development is as much about exploring the problem than it is writing code.