From 0e811b2a16d8f2ccc2a35b0bda99fee3a83d036a Mon Sep 17 00:00:00 2001 From: Hassnain Ali <113959400+hassnain0@users.noreply.github.com> Date: Sun, 13 Oct 2024 17:43:06 +0500 Subject: [PATCH] Create JavaBasicCode --- JavaBasicCode | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 JavaBasicCode diff --git a/JavaBasicCode b/JavaBasicCode new file mode 100644 index 00000000..e5911756 --- /dev/null +++ b/JavaBasicCode @@ -0,0 +1,6 @@ +public class HelloWorld { + public static void main(String[] args) { + // Prints "Hello, World!" to the console + System.out.println("Hello, World!"); + } +}