``` class Foo(var x: Long) { init { println("I...
# getting-started
b
Copy code
class Foo(var x: Long) {
    init { println("Init: $x") }
    constructor(l: Int): this(0L) {
        x = l.toLong()
    }
}