Skip to content

Instantly share code, notes, and snippets.

@riccjohn
Last active November 22, 2019 22:07
Show Gist options
  • Save riccjohn/70d218ced74de5e87ec08538d7f5f9df to your computer and use it in GitHub Desktop.
Save riccjohn/70d218ced74de5e87ec08538d7f5f9df to your computer and use it in GitHub Desktop.
class BarkingSkill {
public func bark() {
print("woof!")
}
}
class EatingSkill {
public func eat() {
print("nom nom nom")
}
}
class CleaningSkill {
public func clean() {
print("Cleaning! beep boop")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment