Skip to content

Instantly share code, notes, and snippets.

@janakmshah
Created January 6, 2020 15:39
Show Gist options
  • Save janakmshah/a4ce600f638530abdae09f2f0a1b7165 to your computer and use it in GitHub Desktop.
Save janakmshah/a4ce600f638530abdae09f2f0a1b7165 to your computer and use it in GitHub Desktop.
class Vehicle {
func refuel()
}
class Car: Vehicle {
func drive()
}
class Motorbike: Vehicle {
func ride()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment