/** A "variable" defined in the CONST section. It has a value
 *  defined at compile time and an associated type.
 */
public class Constant extends Variable {
	public Constant(String name) {
		super(name);
	}
}
