Created
June 29, 2021 09:41
-
-
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
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 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