Skip to content

Instantly share code, notes, and snippets.

@davidjwiner
Created July 7, 2020 01:10
Show Gist options
  • Save davidjwiner/874d815e3ab93f34cc0ab7e6450168aa to your computer and use it in GitHub Desktop.
Save davidjwiner/874d815e3ab93f34cc0ab7e6450168aa to your computer and use it in GitHub Desktop.
class com.example.JavaHelloWorld {
private void unused() {
System.out.println("Unused");
}
private static void greeting() {
System.out.println("Hello, world!");
}
public static void main(String[] args) {
greeting();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment