``` class Foo { val a: Int init { a = 4 ...
# getting-started
s
Copy code
class Foo {
  val a: Int
  init {
    a = 4
  }
}
seems to work for me