home *** CD-ROM | disk | FTP | other *** search
/ ftp.barnyard.co.uk / 2015.02.ftp.barnyard.co.uk.tar / ftp.barnyard.co.uk / cpm / walnut-creek-CDROM / CPM / TURBOPAS / TTUTOR1.LBR / PROG1.PAS < prev    next >
Pascal/Delphi Source File  |  2000-06-30  |  512b  |  18 lines

  1. PROGRAM PROG1;
  2. {$U+          Copyright (C), 1985 by Lyle Faurot.  All rights reserved.
  3.  
  4.     New Topics: Load, Compile, and Run a sample program.
  5.  
  6. }
  7.  
  8.  
  9. BEGIN
  10.   WriteLn('        Welcome to the Turbo-Lesson Tutorials!');
  11.   WriteLn;
  12.   WriteLn('If this message is printing on your screen, you have');
  13.   WriteLn('  1.  Successfully loaded TURBO');
  14.   WriteLn('  2.  Loaded, Compiled, and Run a sample program');
  15.   WriteLn;
  16.   WriteLn('********* NOW, ON TO BIGGER CHALLENGES! ***********');
  17. END.
  18.