ソースを参照

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
+}