mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-18 08:39:33 +02:00
10 lines
190 B
ObjectPascal
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.
|