Last active
March 6, 2019 17:44
-
-
Save nwatth/a7d9fdb03aa621c97727e6c6d390df50 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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment