package pattpack.token_3;

/**
 *  Superclass of all Tokens.
 */
public abstract class Token {
    /**
     *  Return a printable representation of this token.
     *  @return A printable representation of this token.
     */
    public abstract String toString ();
}
