Skip to content

Commit 2f9663b

Browse files
basic Hello World program
1 parent f067138 commit 2f9663b

File tree

4 files changed

+19
-0
lines changed

4 files changed

+19
-0
lines changed

p1/bin/module-info.class

141 Bytes
Binary file not shown.

p1/bin/p1/C1.class

515 Bytes
Binary file not shown.

p1/src/module-info.java

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
/**
2+
*
3+
*/
4+
/**
5+
*
6+
*/
7+
module p1 {
8+
}

p1/src/p1/C1.java

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
package p1;
2+
3+
public class C1 {
4+
5+
public static void main(String[] args) {
6+
// TODO Auto-generated method stub
7+
System.out.println("hello world");
8+
9+
}
10+
11+
}

0 commit comments

Comments
 (0)