Skip to content

Instantly share code, notes, and snippets.

@shabib87
Last active February 5, 2017 17:08
Show Gist options
  • Save shabib87/15f5bd76aeb01112801a5c09ce719d2d to your computer and use it in GitHub Desktop.
Save shabib87/15f5bd76aeb01112801a5c09ce719d2d to your computer and use it in GitHub Desktop.
protocol Flyable {
func flyOnAir()
}
class SmartFlyingCar: SmartCar, Flyable {
func flyOnAir() {
print("Wohoo! I am flying high!")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment