Created
November 7, 2017 21:43
-
-
Save Jahans3/467f1759b34f6ba8a3a29070a95835cb 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 FordCar implements Car { | |
int numberOfSeats = 0; | |
void soundHorn(int volume) { | |
Sounds.soundHorn(volume); | |
} | |
void seats(int number) { | |
numberOfSeats = number; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment