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