Skip to content

Instantly share code, notes, and snippets.

@JangJaeHyung1
Last active July 18, 2021 07:52
싱글톤패턴
class Singleton {
static let shared = Singleton()
var x = 0
private init() { }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment