From 05f4119ad1449c60238839b3d5fc535559a4435f Mon Sep 17 00:00:00 2001 From: niroshajayasundara <32589901+niroshajayasundara@users.noreply.github.com> Date: Sun, 29 Oct 2017 12:45:47 +0530 Subject: [PATCH] Sample Hello World --- Java-helloworld/Main.java | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 Java-helloworld/Main.java diff --git a/Java-helloworld/Main.java b/Java-helloworld/Main.java new file mode 100644 index 0000000..811be74 --- /dev/null +++ b/Java-helloworld/Main.java @@ -0,0 +1,8 @@ +public class Main { + + public static void main(String[] args) { + + System.out.println("Hello World"); + + } +}