We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3251342 commit e51800dCopy full SHA for e51800d
src/dotty/tools/dotc/repl/InterpreterLoop.scala
@@ -79,7 +79,8 @@ class InterpreterLoop(
79
*/
80
def firstLine(): String = {
81
val futLine = Future(in.readLine(prompt))
82
- interpreter.beQuietDuring(interpreter.interpret("val __$__ = 1 + 1"))
+ interpreter.beQuietDuring(
83
+ interpreter.interpret("val theAnswerToLifeInTheUniverseAndEverything = 21 * 2"))
84
Await.result(futLine, Duration.Inf)
85
}
86
0 commit comments