Skip to content

Instantly share code, notes, and snippets.

@thecoder8890
Created June 29, 2021 09:41
Show Gist options
  • Save thecoder8890/d0af3a10c4f4bcaa5623855903b77286 to your computer and use it in GitHub Desktop.
Save thecoder8890/d0af3a10c4f4bcaa5623855903b77286 to your computer and use it in GitHub Desktop.
The “Hello World” example is somewhat famous as it is often the first program presented when introducing a programming language
class HelloWorld {
public static void main(String args[]) {
System.out.println("Hello World!");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment