
package tmcm.xTurtle;

class TToken {
   int position;
   String name;
   int kind;  // one of the token constants defined in TTokenizer, below
}


