mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-12 21:11:45 +02:00
19 lines
160 B
ObjectPascal
19 lines
160 B
ObjectPascal
{ %VERSION=1.1 }
|
|
|
|
program tinivar;
|
|
|
|
procedure p1;
|
|
var
|
|
a : integer = 1;
|
|
begin
|
|
writeln(a);
|
|
if a<>1 then
|
|
halt(1);
|
|
inc(a);
|
|
end;
|
|
|
|
begin
|
|
p1;
|
|
p1;
|
|
end.
|