separate (Vt100)



procedure Goodbye_Message is
    ----------------------------------------------------------------------
    --|
    --|  NAME:  GOODBYE_MESSAGE
    --|
    --|  OVERVIEW:
    --|    This procedure prints the TRACKER exit message on the
    --|    terminal screen.
    --|
    --|  EXCEPTIONS HANDLED:
    --|    none
    --|
    --|  HISTORY:
    --|    written by   May Lee   March 1985
    --|
    ----------------------------------------------------------------------
begin
    New_Line (15);
    Put_Line ("                                    BYE");
    New_Line (15);
end Goodbye_Message;