This commit was manufactured by cvs2svn to create tag 'buildscript'.
[IRC.git] /
1 package Lex;
2
3 abstract class NumericLiteral extends Literal {
4   Number val;
5
6   public String toString() { return "NumericLiteral <"+val.toString()+">"; }
7 }