<@U369WF1KJ> Lazy isn't a replacement, it's about ...
# announcements
k
@hallvard Lazy isn't a replacement, it's about something like this:
Copy code
/** This class is not safe for multithreading **/
class Test {
    var a: String? = null
    fun foo() { if (a != null) print(a.toUpperCase()) }
}