Skip to content

Instantly share code, notes, and snippets.

@Jahans3
Created November 7, 2017 21:43
Show Gist options
  • Save Jahans3/467f1759b34f6ba8a3a29070a95835cb to your computer and use it in GitHub Desktop.
Save Jahans3/467f1759b34f6ba8a3a29070a95835cb to your computer and use it in GitHub Desktop.
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