From 4ee9da0e5e4da2a0aa25137ac5656bd76922e492 Mon Sep 17 00:00:00 2001 From: blckxsepia Date: Thu, 8 Nov 2018 16:05:58 +0100 Subject: [PATCH] initial commit --- .idea/vcs.xml | 6 ++++++ src/HelloWorld.java | 5 +++++ 2 files changed, 11 insertions(+) create mode 100644 .idea/vcs.xml create mode 100644 src/HelloWorld.java diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..35eb1dd --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/src/HelloWorld.java b/src/HelloWorld.java new file mode 100644 index 0000000..91b96ad --- /dev/null +++ b/src/HelloWorld.java @@ -0,0 +1,5 @@ +public class HelloWorld { + public static void main(String[] args) { + System.out.println("Hallo Welt"); + } +} \ No newline at end of file