andrewoma
class Counter { private var value: Int = 0 fun increment(): Int = value++ // Use this val increment: Int // Not this get() = value++ }