Skip to content

Instantly share code, notes, and snippets.

@hudinwal
Created March 1, 2017 10:57
Show Gist options
  • Save hudinwal/8a57dcd31fd5b457caa7fa7fa6222156 to your computer and use it in GitHub Desktop.
Save hudinwal/8a57dcd31fd5b457caa7fa7fa6222156 to your computer and use it in GitHub Desktop.
class Diver: Swimmable {
func swim() {
print("Diver is swiming")
}
}
class Whale: Swimmable {
func swim() {
print("Whale is Swiming")
}
}
let expertDiver = Diver()
expertDiver.swim()
let blueWhale = Whale()
blueWhale.swim()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment