From 14da289cf9439f354632f288ff5b3c534cf67c50 Mon Sep 17 00:00:00 2001 From: Rishabhraghwendra18 Date: Mon, 4 Oct 2021 17:27:19 +0530 Subject: [PATCH] added helloworld program in java --- Java/hello-world.java | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 Java/hello-world.java diff --git a/Java/hello-world.java b/Java/hello-world.java new file mode 100644 index 0000000..f50678a --- /dev/null +++ b/Java/hello-world.java @@ -0,0 +1,5 @@ +class HelloWorld { + public static void main(String[] args) { + System.out.println("Hello, World!"); + } +} \ No newline at end of file