summaryrefslogtreecommitdiff
path: root/fpcdocs/refex/ex30.pp
blob: f53301aa0a542b46f4b10764f28c43c4dbf6b2c1 (plain)
1
2
3
4
5
6
7
8
9
Program Example30;

{ Program to demonstrate the Halt function. }

begin
 Writeln ('Before Halt.');
 Halt (1); { Stop with exit code 1 }
 Writeln ('After Halt doesn''t get executed.');
end.