Guest User

Untitled

a guest
Apr 22nd, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. // Singleton class Vehicle
  2. class Vehicle {
  3. static let sharedInstance = Vehicle()
  4. // private initialser
  5. private init() {}
  6.  
  7. func getName() -> String {
  8. return "Car"
  9. }
  10. }
Add Comment
Please, Sign In to add comment