home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Freelog 22
/
freelog 22.iso
/
Prog
/
Djgpp
/
GPC2952B.ZIP
/
doc
/
gpc
/
demos
/
hello.pas
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Pascal/Delphi Source File
|
2001-02-08
|
258 b
|
12 lines
{
This is not really a complicated demo program, but sometimes it's
practical to have a `Hello' program handy to test a compiler
installation. It should compile with any Pascal compiler. :-)
}
program Hello (Output);
begin
Writeln ('Hello, world.')
end.