From 4189ecafac05a2d41ef67bfe5e666f8a963fa6f3 Mon Sep 17 00:00:00 2001 From: kushagra18147 <56236001+kushagra18147@users.noreply.github.com> Date: Mon, 7 Oct 2019 02:32:24 +0530 Subject: [PATCH] Create hello world --- hello world | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 hello world diff --git a/hello world b/hello world new file mode 100644 index 0000000..dae9c2b --- /dev/null +++ b/hello world @@ -0,0 +1,9 @@ +class HelloWorld +{ + // Your program begins with a call to main(). + // Prints "Hello, World" to the terminal window. + public static void main(String args[]) + { + System.out.println("Hello, World"); + } +}