Skip to content

Instantly share code, notes, and snippets.

@agoiabel
Last active January 21, 2018 22:14
Show Gist options
  • Save agoiabel/28862b8aefb03941cd3a0dc62c1d2ac2 to your computer and use it in GitHub Desktop.
Save agoiabel/28862b8aefb03941cd3a0dc62c1d2ac2 to your computer and use it in GitHub Desktop.
protocol Flyable {
func fly() -> String
}
class Airplane: Flyable {
func fly() -> String {
return ("Airplane can fly")
}
}
class Bird: Flyable {
func fly() -> String {
return ("Bird can fly too")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment