Skip to content

Instantly share code, notes, and snippets.

View SuigetsuSake's full-sized avatar

Mikael Sanchez SuigetsuSake

  • Eutech SSII
  • Troyes
View GitHub Profile
@ademar111190
ademar111190 / singletonExample.java
Last active September 22, 2017 08:29
One month with Kotlin: singleton example
// Using Singleton on Kotlin
public object MySingleton {
public fun foo() {
}
}
// And use it on Kotlin
MySingleton.foo()