home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / pascal / tpw / welcome.pas < prev    next >
Pascal/Delphi Source File  |  1991-05-20  |  653b  |  22 lines

  1. program Welcome;
  2.  
  3. uses
  4.   WinCrt;  { Allows Writeln, Readln, cursor movement, etc. }
  5.  
  6. { WinCrt Demo Program
  7.  
  8.   (Press Ctrl-F9 to run this program.)
  9.  
  10.   This program demonstrates how to use the WinCrt unit
  11.   to perform "traditional" screen I/O. This is the easiest
  12.   way to build text mode programs that run in a window.
  13.   For more information about the WinCrt unit, refer to
  14.   Chapter 14 in the Programmer's Guide. For information
  15.   on writing more advanced Windows applications, read
  16.   about the ObjectWindows application framework in the
  17.   Windows Programming Guide. }
  18.  
  19. begin
  20.   Writeln('Welcome to Turbo Pascal for Windows');
  21. end.
  22.