hello.pp 755 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. $Id$
  3. This file is part of the Free Pascal run time library.
  4. Copyright (c) 1993-98 by the Free Pascal Development Team
  5. Hello World Example
  6. See the file COPYING.FPC, included in this distribution,
  7. for details about the copyright.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  11. **********************************************************************}
  12. program hello;
  13. begin
  14. writeln('Hello world');
  15. end.
  16. {
  17. $Log$
  18. Revision 1.3 2002-09-07 15:06:35 peter
  19. * old logs removed and tabs fixed
  20. Revision 1.2 2002/02/22 21:46:25 carl
  21. + fixed log problems
  22. }