package cmdpack;

/**
 *  History command.
 */
public class History extends Command {
    /**
     *  Return a printable representation of this command.
     *  @return A printable representation of this command.
     */
    public String toString () { return "History"; }
}
