PROG1.PAS  ·  PAS  ·  512 B  ·  1985-08-25  ·  from IBM-PC-User-Group-Software-Library_Disk-101-Turbo-Lessons
PROGRAM PROG1;
{$U+          Copyright (C), 1985 by Lyle Faurot.  All rights reserved.

    New Topics: Load, Compile, and Run a sample program.

}


BEGIN
  WriteLn('        Welcome to the Turbo-Lesson Tutorials!');
  WriteLn;
  WriteLn('If this message is printing on your screen, you have');
  WriteLn('  1.  Successfully loaded TURBO');
  WriteLn('  2.  Loaded, Compiled, and Run a sample program');
  WriteLn;
  WriteLn('********* NOW, ON TO BIGGER CHALLENGES! ***********');
END.