scala-ide / scala-worksheet

A Scala IDE plugin for a multi-line REPL (called worksheet)
96 stars 24 forks source link

Problem when evaluating print #159

Open skyluc opened 11 years ago

skyluc commented 11 years ago

The content of the last print doesn't appear when evaluated.

object test {
  print("1")                                      //> 1
  print("1")
}