mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-12 23:29:31 +02:00
18 lines
143 B
ObjectPascal
18 lines
143 B
ObjectPascal
|
|
program tinivar;
|
|
|
|
procedure p1;
|
|
var
|
|
a : integer = 1;
|
|
begin
|
|
writeln(a);
|
|
if a<>1 then
|
|
halt(1);
|
|
inc(a);
|
|
end;
|
|
|
|
begin
|
|
p1;
|
|
p1;
|
|
end.
|