mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-07-03 12:48:21 +02:00
22 lines
586 B
ObjectPascal
22 lines
586 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.
|
|
|