In python REPL I can do things like:
>>> [1,2,3,4]
[1, 2, 3, 4]
>>> sum(_)
10
In clojure REPL I can do this:
user=> "Hello!"
"Hello!"
user=> *1
"Hello!"
Is there is something like this in Scala REPL?
|
In python REPL I can do things like:
In clojure REPL I can do this:
Is there is something like this in Scala REPL? |
|||
|
|
|
Yes, you can use dot notation to refer to the last result:
|
|||
|
|
|
You can refer to the previous output as
Well, that
|
|||
|
|
|
I normally just hit the ↑ key to bring back the last line of code and carry on typing. This has the advantage of keeping the whole expression together for easy cutting-and-pasting or editing later. |
|||
|
|