mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-06-26 17:23:29 +02:00
30 lines
738 B
ObjectPascal
30 lines
738 B
ObjectPascal
{
|
|
$Id$
|
|
This file is part of the Free Pascal run time library.
|
|
Copyright (c) 1993-98 by the Free Pascal Development Team
|
|
|
|
Hello World Example
|
|
|
|
See the file COPYING.FPC, included in this distribution,
|
|
for details about the copyright.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
**********************************************************************}
|
|
|
|
program hello;
|
|
|
|
begin
|
|
writeln('Hello world');
|
|
end.
|
|
$Log$
|
|
Revision 1.1 2001-05-03 21:39:34 peter
|
|
* moved to own module
|
|
|
|
Revision 1.2 2000/07/13 11:33:10 michael
|
|
+ removed logs
|
|
|
|
}
|