Skip to content

Instantly share code, notes, and snippets.

@lol97
Last active January 7, 2024 09:30
Show Gist options
  • Select an option

  • Save lol97/aff3259487519786f75fa2a39f81cf90 to your computer and use it in GitHub Desktop.

Select an option

Save lol97/aff3259487519786f75fa2a39f81cf90 to your computer and use it in GitHub Desktop.
interface Hello {
public String getHelloFormal();
}
class Greeting {
//definisikan anonymous class
Hello helloBahasaIndonesia = new Hello(){
public String getHelloFormal(){
return "Selamat pagi";
}
};
Hello helloSunda = new Hello(){
public String getHelloFormal(){
return "Wilujen Sumping";
}
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment