Example #1
0
        public static cnst make_cnst( int  n )
        {
            Object       r= table[n];

              if (r != null)
            return (cnst)r;

              cnst         result= new cnst( n );

              table[n]= result;

              return result;
        }
Example #2
0
 public static int CCNST( cnst  o )
 {
     return o.value;
 }