This commit is contained in:
2018-05-16 12:08:06 +02:00
5 changed files with 254 additions and 170 deletions

View File

@@ -7,7 +7,6 @@ import java.util.List;
public class Program {
private final List<Procedure> procedureList;
private final Statement main;
@@ -15,7 +14,6 @@ public class Program {
public Program(List<Procedure> proc, Statement main) {
this.procedureList = proc;
this.main = main;
}
public Worm getWorm() {