This commit is contained in:
Christoph
2021-01-18 17:55:23 +01:00
parent c93589bd3f
commit 049f2529d4
2 changed files with 2 additions and 24 deletions

2
.gitignore vendored
View File

@ -10,3 +10,5 @@ jasmin.jar
*.class
*.j
TestClass.stups

View File

@ -1,24 +0,0 @@
class TestClass {
public static void main(String[] args) {
int a = 1 + 2;
System.out.println(a);
// int a = 5 * 10 - 15 * 3;
// int c = 0;
// boolean add = true;
// String ergebnis = "Ergebnis: ";
// if (add)
// c = a + b;
// else
// c = a - b;
// if (c >= 8) {
// c = c + 1;
// ergebnis = "Großes Ergebnis: ";
// }
// System.out.println(ergebnis);
// System.out.println(c);
}
}