Ejemplo n.º 1
0
 public BinaryOp(Literal left, string op, Literal right)
 {
     this.left = (int)left.val();
     this.op = op;
     this.right = (int)right.val();
 }