Skip to content

Instantly share code, notes, and snippets.

@piyush23dez
Created July 13, 2018 21:04
Show Gist options
  • Save piyush23dez/27048350702a21f7193915a46ed40846 to your computer and use it in GitHub Desktop.
Save piyush23dez/27048350702a21f7193915a46ed40846 to your computer and use it in GitHub Desktop.
class GermanShephard: Barker, DrugSniffer {
}
class BelgianMalinois: Barker, Swimmer, DrugSniffer {
}
class Poodle: Barker, Swimmer {
}
let belgian = BelgianMalinois()
belgian.bark() // prints "Bark!"
belgian.swim() // prints "Splash!"
belgian.sniffDrugs() // prints "I found drugs!"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment