Skip to content

Instantly share code, notes, and snippets.

@LH17
Last active April 15, 2018 05:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save LH17/f6e09075c5e93135c47025aed7b9728f to your computer and use it in GitHub Desktop.
Save LH17/f6e09075c5e93135c47025aed7b9728f to your computer and use it in GitHub Desktop.
// Singleton class Vehicle
class Vehicle {
static let sharedInstance = Vehicle()
// private initialser
private init() {}
func getName() -> String {
return "Car"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment