summaryrefslogtreecommitdiff
path: root/fpcsrc/tests/webtbs/uw2731.pp
blob: 3e92b81d6f562c396c5383495477d366315061ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{ 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.