Skip to content

Instantly share code, notes, and snippets.

@MoussaHellal
Created September 23, 2021 19:28
Show Gist options
  • Save MoussaHellal/0fe74c3dc49a434848ec057f5d52e638 to your computer and use it in GitHub Desktop.
Save MoussaHellal/0fe74c3dc49a434848ec057f5d52e638 to your computer and use it in GitHub Desktop.
class Human {
static var name = "Mousa"
class var age : Int {
return 27
}
}
// Type Method : we accessed both properties without even creating an instance of Human Class.
print(Human.name)
print(Human.age)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment