Skip to content

Commit 719f0e9

Browse files
Create hello world
1 parent 52250aa commit 719f0e9

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

hello world

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
class HelloWorld
2+
{
3+
// Your program begins with a call to main().
4+
// Prints "Hello, World" to the terminal window.
5+
public static void main(String args[])
6+
{
7+
System.out.println("Hello, World");
8+
}
9+
}

0 commit comments

Comments
 (0)