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