starting to implement program

This commit is contained in:
2018-05-06 21:34:49 +02:00
parent fb690e38f9
commit 3ce0505f4e
3 changed files with 377 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
package worms.programs;
public abstract class BinaryExpression<L, R> implements Expression {
protected final L left;
protected final R right;
public BinaryExpression(L left, R right) {
this.left = left;
this.right = right;
}
}