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() {
7     return "NumericLiteral <"+val.toString()+">";
8   }
9 }