Kotlin - Operators and Expressions
What will be the output of this Kotlin code?
class Counter(var count: Int) {
operator fun inc(): Counter {
count++
return this
}
}
fun main() {
var c = Counter(10)
println(c++)
println(c.count)
}