Skip to content

Instantly share code, notes, and snippets.

@CheolhoJeon
Created June 17, 2021 03:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save CheolhoJeon/080032a7e81eb0fe489b94b79d718154 to your computer and use it in GitHub Desktop.
Save CheolhoJeon/080032a7e81eb0fe489b94b79d718154 to your computer and use it in GitHub Desktop.
package chap5.CompanionObjects
import atomictest.eq
class CompanionObjectFunction {
companion object {
private var n: Int = 0
fun increment() = ++n
}
}
fun main() {
CompanionObjectFunction.increment() eq 1
CompanionObjectFunction.increment() eq 2
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment