package pattpack.token_3;

/**
 *  Representation of end of source token.
 */
public class EOF extends Token {
    /**
     *  Return a printable representation of this token.
     *  @return A printable representation of this token.
     */
    public String toString () { return "EOF"; }
}
