summaryrefslogtreecommitdiff
path: root/java/01-helloworld/HelloWorld.java
diff options
context:
space:
mode:
authorKamal Wickramanayake <kamal@inbox.lk>2026-02-09 19:11:09 +0530
committerKamal Wickramanayake <kamal@inbox.lk>2026-02-09 19:11:09 +0530
commit7790862c32df0a61b6ee55a42d85e1e03c6bf44e (patch)
tree6701ec4cdf7010e0792575855892a6363a485b7a /java/01-helloworld/HelloWorld.java
Added initial java samples.
Diffstat (limited to 'java/01-helloworld/HelloWorld.java')
-rw-r--r--java/01-helloworld/HelloWorld.java5
1 files changed, 5 insertions, 0 deletions
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!");
+ }
+}