Skip to content

Instantly share code, notes, and snippets.

@SURYAKANTSHARMA
Created February 22, 2020 07:33
Show Gist options
  • Save SURYAKANTSHARMA/6237f15beb17a7633cef25acd353ee6a to your computer and use it in GitHub Desktop.
Save SURYAKANTSHARMA/6237f15beb17a7633cef25acd353ee6a to your computer and use it in GitHub Desktop.
class Singleton {
private init() { }
static let sharedInstance: Singleton = {
let instance = Singleton()
// setup code
return instance
}()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment