From 391244ceb038c63bd10160a15794704dca9cab89 Mon Sep 17 00:00:00 2001 From: Cloud User Date: Fri, 12 Feb 2021 07:19:16 +0000 Subject: [PATCH] adding helloworld file --- src/main/helloworld.java | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 src/main/helloworld.java diff --git a/src/main/helloworld.java b/src/main/helloworld.java new file mode 100644 index 0000000..df3c4ac --- /dev/null +++ b/src/main/helloworld.java @@ -0,0 +1,5 @@ +class helloworld { + public static void main(String[] args) { + System.out.println("Hello, World!"); + } +}