From 8f983cfe48b5a1dba6f950773ecc5eb97e751499 Mon Sep 17 00:00:00 2001 From: shobhitsk <33256785+shobhitsk@users.noreply.github.com> Date: Tue, 31 Oct 2017 19:25:04 +0530 Subject: [PATCH] Create hello.java hello world in java --- java/hello.java | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 java/hello.java diff --git a/java/hello.java b/java/hello.java new file mode 100644 index 0000000..6d50415 --- /dev/null +++ b/java/hello.java @@ -0,0 +1,8 @@ +public class HelloWorld { + + public static void main(String[] args) { + // Prints "Hello, World" to the terminal window. + System.out.println("Hello, World"); + } + +}