Compare commits

...

2 Commits

Author SHA1 Message Date
Bruder John
ba08c6f6b0 Merge branch 'Endabgabe' of https://gitea.hb.dhbw-stuttgart.de/i22005/NichtHaskell2.0 into Endabgabe
Some checks are pending
Gitea Actions Demo / Explore-Gitea-Actions (push) Waiting to run
2024-07-03 19:25:59 +02:00
Bruder John
a9d7e841f5 changed correct Semantic check 2024-07-03 18:42:14 +02:00

View File

@ -1,7 +1,21 @@
public class CorrectTest {
int a;
boolean b;
char c;
public class Run { public void controlStructures(int adf, boolean bool) {
public static void main(String[] args) { if (a > (10 + 8)) {
// Test t = new Test(); } else {
// System.out.println(t.test());
} }
while (a > adf) {
a--;
}
for (int i = 0; i < 5; i++) {
}
} }
}