Created
March 6, 2019 17:48
-
-
Save nwatth/891578c7e1f2f12ea3ffd97ce43bc1ad to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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