/**
 * Represents an atomic numerical operand in a mathematical expression.
 */
public class Operand extends Token {
   private double value;
   public Operand(double tok) {
     value = tok;
   }
   public double getValue() {
     return value;
   }
   public String toString() {
     return Double.toString(value);
   }
}
