Skip to content

Commit ac18b6f

Browse files
authored
Merge pull request Vedenin#72 from kushagra18147/patch-1
Create hello world
2 parents 446e105 + 719f0e9 commit ac18b6f

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)