yeah, like this: ``` open class Foo object myFoo...
# announcements
k
yeah, like this:
Copy code
open class Foo

object myFoo : Foo() {
  val x = 10
}

fun test() {
  println(myFoo.x)
}