home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 15 / CDACTUAL15.iso / cdactual / program / pascal / PAS_TUT.ZIP / WRITEMR.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1991-02-04  |  186 b   |  17 lines

  1. program Guppy_The_Fish;
  2.  
  3. begin
  4.    Write('This will ');
  5.    Write('all be ');
  6.    Writeln('on one line.');
  7. end.
  8.  
  9.  
  10.  
  11.  
  12. { Result of execution
  13.  
  14. This will all be on one line.
  15.  
  16. }
  17.