scap
02/09/2018, 7:05 AMclass Foo internal constructor() {
var bar: Int = 0
private set
var fuz: String = ""
private set
constructor(a: Int, b: String) : this(){
this.bar = a
this.fuz = b
}
}
var foo = Foo(9,"hello world")
chb0kotlin
02/09/2018, 6:28 PM