You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sublime text editor crashes when evaluating large output for e.g
the below code snippet when evaluated would crash the editor
import scala.collection.mutable.ListBuffer
import java.util.{ArrayList => jal}
val lb = ListBuffer[String]()
lb += "a"
lb += "b"
val jl = new jal[String]()
jl.add("a")
jl.add("b")
val x = 90
x + 1
val b = (1 to 5000).toList.foreach(x => (1 to x).foreach(println))
The text was updated successfully, but these errors were encountered:
Sublime text editor crashes when evaluating large output for e.g
the below code snippet when evaluated would crash the editor
The text was updated successfully, but these errors were encountered: