correction bug Op

This commit is contained in:
trochas
2025-04-01 18:17:52 +02:00
parent 3f9072c7bd
commit bef2073599
4 changed files with 11 additions and 11 deletions

View File

@@ -29,7 +29,7 @@ public interface Interface{
public String prettyprinter();
}
public enum Op {PLUS, MINUS, TIMES,DIV}
public enum Op {PLUS, MINUS, TIMES, DIV}
//Eval
public interface ExprEval extends ExprVisitor<Map<String, Integer>, Integer> {