Skip to content

Instantly share code, notes, and snippets.

@sormuras
Created August 16, 2022 14:29
Show Gist options
  • Save sormuras/72f61a4012cdcdd62b65124f2e640230 to your computer and use it in GitHub Desktop.
Save sormuras/72f61a4012cdcdd62b65124f2e640230 to your computer and use it in GitHub Desktop.
Java program skeleton
class Program {
public static void main(String... args) {
new Program().printGreeting();
}
void printGreeting() {
// just scaffolded
throw new UnsupportedOperationException("Not implemented, yet");
// will be replaced
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment