Created
August 16, 2022 14:29
-
-
Save sormuras/72f61a4012cdcdd62b65124f2e640230 to your computer and use it in GitHub Desktop.
Java program skeleton
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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