浏览代码

Initial commit

Matthias Kellnhofer 8 年之前
当前提交
3f109c7cc7
共有 2 个文件被更改,包括 14 次插入0 次删除
  1. 5 0
      .gitignore
  2. 9 0
      src/de/tc/test/Main.java

+ 5 - 0
.gitignore

@@ -0,0 +1,5 @@
1
+
2
+/bin/
3
+/.settings/
4
+/.classpath
5
+/.project

+ 9 - 0
src/de/tc/test/Main.java

@@ -0,0 +1,9 @@
1
+package de.tc.test;
2
+
3
+public class Main {
4
+
5
+	public static void main(String[] args) {
6
+		System.out.println("Hello World!");
7
+	}
8
+
9
+}