Skip to content

Instantly share code, notes, and snippets.

@janakmshah
Last active January 6, 2020 16:59
Show Gist options
  • Save janakmshah/c2070ee25fe9d63fd8776e3f6258a579 to your computer and use it in GitHub Desktop.
Save janakmshah/c2070ee25fe9d63fd8776e3f6258a579 to your computer and use it in GitHub Desktop.
protocol Refuelable {
func refuel()
}
protocol Drivable {
func drive()
}
protocol Rideable {
func ride()
}
protocol Cleaner {
func clean()
}
protocol Maintainer {
func maintain()
}
protocol VehicleFinder {
func findVehicle()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment