From 0812abf70d898aa525f9b28ae572bf1f3730b758 Mon Sep 17 00:00:00 2001 From: suraj916274 <44647605+suraj916274@users.noreply.github.com> Date: Wed, 31 Oct 2018 21:47:07 +0530 Subject: [PATCH] Create hello_world.java --- hello_world.java | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 hello_world.java diff --git a/hello_world.java b/hello_world.java new file mode 100644 index 0000000..4700f0a --- /dev/null +++ b/hello_world.java @@ -0,0 +1,5 @@ +class Hello{ + public static void main(String[] args){ + System.out.println("Hello World"); + } +}