Skip to content

Instantly share code, notes, and snippets.

@ellehallal
Last active June 13, 2019 07:43
Show Gist options
  • Save ellehallal/47731c60aef44a5e8369fd4cc047296b to your computer and use it in GitHub Desktop.
Save ellehallal/47731c60aef44a5e8369fd4cc047296b 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 celebrate() {
System.out.println("WOO HOO!");
}
@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