Created
August 7, 2022 06:17
-
-
Save pallavtrivedi03/fd9cb43dc76ead6ddc97ef826e034741 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Singleton { | |
static let shared: 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