From e7e3d65a0576cd361573b0eacfe9efacb0c1cf80 Mon Sep 17 00:00:00 2001 From: localadmin Date: Fri, 14 Aug 2020 16:34:10 +0200 Subject: [PATCH] =?UTF-8?q?=E2=80=9EHelloWorld.java=E2=80=9C=20hinzuf?= =?UTF-8?q?=C3=BCgen?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- HelloWorld.java | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 HelloWorld.java diff --git a/HelloWorld.java b/HelloWorld.java new file mode 100644 index 0000000..acffd0f --- /dev/null +++ b/HelloWorld.java @@ -0,0 +1,9 @@ +public class HelloWorld +{ + + public static void main (String[] args) + { + // Ausgabe Hello World! + System.out.println("Hello World!"); + } +} \ No newline at end of file