fpc/docs/refex/ex30.pp
1998-03-25 11:26:49 +00:00

10 lines
190 B
ObjectPascal

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.