From b8afc1f6114518396d1f576d08160f3d59520a24 Mon Sep 17 00:00:00 2001 From: dev1 Date: Thu, 4 May 2023 07:37:03 +0000 Subject: [PATCH] hello.java added --- hello.java | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 hello.java diff --git a/hello.java b/hello.java new file mode 100644 index 0000000..3f6424a --- /dev/null +++ b/hello.java @@ -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"); + } +}