Aufgabe 2 ausgeführt.

This commit is contained in:
schrom01 2021-11-16 16:21:08 +01:00
parent 080ad01dbb
commit e7f050813a
1 changed files with 20 additions and 0 deletions

View File

@ -1,3 +1,23 @@
public class Anwendung {
public static void main(String[] args) {
Anwendung anwendung = new Anwendung();
anwendung.start();
}
private void start() {
Kontroller kontroller = new Kontroller();
Parser parser = new Parser();
boolean macheWeiter = true;
while (macheWeiter) {
Befehl auszufuehrenderBefehl = parser.liefereBefehl();
if(! kontroller.verarbeiteBefehl(auszufuehrenderBefehl)) {
macheWeiter = false;
}
}
}
}