Skip to content

Commit b004bac

Browse files
committed
Add Hello World file
1 parent 50fa355 commit b004bac

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

HelloWorld.java

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
public class HelloWorld {
2+
public static void main(String[] args) {
3+
4+
String h = "Hello,";
5+
String w = "World!";
6+
7+
System.out.println(h + " " + w);
8+
}
9+
}
10+

0 commit comments

Comments
 (0)