diff options
Diffstat (limited to 'java/01-helloworld')
| -rw-r--r-- | java/01-helloworld/.gitignore | 1 | ||||
| -rw-r--r-- | java/01-helloworld/HelloWorld.java | 5 |
2 files changed, 6 insertions, 0 deletions
diff --git a/java/01-helloworld/.gitignore b/java/01-helloworld/.gitignore new file mode 100644 index 0000000..6b468b6 --- /dev/null +++ b/java/01-helloworld/.gitignore @@ -0,0 +1 @@ +*.class diff --git a/java/01-helloworld/HelloWorld.java b/java/01-helloworld/HelloWorld.java new file mode 100644 index 0000000..299d161 --- /dev/null +++ b/java/01-helloworld/HelloWorld.java @@ -0,0 +1,5 @@ +public class HelloWorld { + public static void main(String[] args) { + System.out.println("Hello World!"); + } +} |
