Skip to content

Instantly share code, notes, and snippets.

@jollyjoester
Created December 20, 2015 08:11
Show Gist options
  • Save jollyjoester/61794f6d1e818138a7ce to your computer and use it in GitHub Desktop.
Save jollyjoester/61794f6d1e818138a7ce to your computer and use it in GitHub Desktop.
Singleton #__swift__ #CodePiece
class Singletone {
static let sharedInstance: Singletone = Singletone()
private init() {
print("Singleton")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment