Skip to content

Instantly share code, notes, and snippets.

@ellehallal
Created June 12, 2019 13:21
Show Gist options
  • Save ellehallal/5ec967bcf7f1d4ac0e20c086d50beb3b to your computer and use it in GitHub Desktop.
Save ellehallal/5ec967bcf7f1d4ac0e20c086d50beb3b to your computer and use it in GitHub Desktop.
public class EnglishGreeter extends Greeter {
@Override
public void doHello() {
System.out.println("Hello!");
}
@Override
public void doGoodbye() {
System.out.println("Goodbye!");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment