Skip to content

Instantly share code, notes, and snippets.

@yenerm
Created April 17, 2020 19:30
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 yenerm/1f8ea978c1b2b48a898df26d303f8bab to your computer and use it in GitHub Desktop.
Save yenerm/1f8ea978c1b2b48a898df26d303f8bab to your computer and use it in GitHub Desktop.
Singleton via object
<!-- Copyright 2019 Google LLC.
SPDX-License-Identifier: Apache-2.0 -->
object Singleton {
private var count: Int = 0
fun count() {
count++
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment