From d4778c338b0cbe98da7da6c6fad6d03aad6cff54 Mon Sep 17 00:00:00 2001 From: sakurasnowangel <77871458+sakurasnowangel@users.noreply.github.com> Date: Fri, 22 Jan 2021 21:04:57 -0800 Subject: [PATCH] Create helloworld --- helloworld | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 helloworld diff --git a/helloworld b/helloworld new file mode 100644 index 0000000..6c31ff7 --- /dev/null +++ b/helloworld @@ -0,0 +1,9 @@ +/* HelloWorld.java + */ + +public class HelloWorld +{ + public static void main(String[] args) { + System.out.println("Hello World!"); + } +}