Skip to content

Instantly share code, notes, and snippets.

@ellehallal
Last active June 18, 2019 12:22
Show Gist options
  • Save ellehallal/70e34e271f7300a6d64b254239019b5b to your computer and use it in GitHub Desktop.
Save ellehallal/70e34e271f7300a6d64b254239019b5b to your computer and use it in GitHub Desktop.
public class FrenchGreeter extends Greeter {
@Override
public void doHello() {
System.out.println("Bonjour!");
}
@Override
public void doGoodbye() {
System.out.println("Au revoir!");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment