``` class Foo { fun bar(): String? = null } va...
# announcements
j
Copy code
class Foo {
    fun bar(): String? = null
}
val a: Foo? = Foo()
a?.bar()