Here's an example to make it clearer: ``` class Co...
# announcements
a
Here's an example to make it clearer:
Copy code
class Counter {
    private var value: Int = 0

    fun increment(): Int = value++  // Use this

    val increment: Int  // Not this
        get() = value++
}