Open dotta opened 12 years ago
It would be nice if after evaluation the evaluation of a is updated to the computed value, i.e., 2
a
2
object f { lazy val a = 2 //> a : Int = <lazy> a + 2 //> res0: Int = 4 }
It would be nice if after evaluation the evaluation of
a
is updated to the computed value, i.e.,2