Skip to content

Instantly share code, notes, and snippets.

@nwatth
Created March 6, 2019 17:48
Show Gist options
  • Select an option

  • Save nwatth/891578c7e1f2f12ea3ffd97ce43bc1ad to your computer and use it in GitHub Desktop.

Select an option

Save nwatth/891578c7e1f2f12ea3ffd97ce43bc1ad to your computer and use it in GitHub Desktop.
class Animal
def move
'walking'
end
end
class Pig < Animal
end
class Dog < Animal
end
class Cat < Animal
end
class Fish < Animal
def move
"swimming"
end
end
class Bird < Animal
def move
"flying"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment