home *** CD-ROM | disk | FTP | other *** search
/ Freelog 22 / freelog 22.iso / Prog / Djgpp / GPC2952B.ZIP / doc / gpc / demos / hello.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  2001-02-08  |  258 b   |  12 lines

  1. {
  2. This is not really a complicated demo program, but sometimes it's
  3. practical to have a `Hello' program handy to test a compiler
  4. installation. It should compile with any Pascal compiler. :-)
  5. }
  6.  
  7. program Hello (Output);
  8.  
  9. begin
  10.   Writeln ('Hello, world.')
  11. end.
  12.