Exemplo n.º 1
0
 protected override LithpPrimitive operatorDivide(LithpPrimitive other)
 {
     return(value / other);
 }
Exemplo n.º 2
0
 protected override LithpPrimitive operatorMultiply(LithpPrimitive other)
 {
     return(value * other);
 }
Exemplo n.º 3
0
 public override bool compareEqual(LithpPrimitive other)
 {
     return(value.compareEqual(other));
 }
Exemplo n.º 4
0
 protected override LithpPrimitive operatorMinus(LithpPrimitive other)
 {
     return(value - other);
 }
Exemplo n.º 5
0
 public LithpLiteral(LithpPrimitive value)
 {
     this.value = value;
 }