fpc/tests/webtbs/uw2731.pp
2003-10-21 17:31:36 +00:00

13 lines
253 B
ObjectPascal

{ Source provided for Free Pascal Bug Report 2731 }
{ Submitted by "Wiktor Sywula" on 2003-10-10 }
{ e-mail: wswiktor@poczta.fm }
unit uw2731;
interface
implementation
initialization
writeln('Hello world');
finalization
writeln('Bye world');
end.