Initial commit

This commit is contained in:
2020-01-30 22:31:36 +01:00
commit d4b4be940c
23 changed files with 1694 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
package testclass;
public class AdvancedTest {
public static void Main(String[] args) throws Exception{
char c = (char) System.in.read();
if (c == 'a') {
System.out.println("Is a");
} else {
System.out.println("Is not a");
}
}
}

9
testclass/Test.java Normal file
View File

@@ -0,0 +1,9 @@
package testclass;
public class Test {
String testfield;
public static int otherField;
public static void Main(String[] args) {
System.out.println("Hello World!");
}
}