mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 20:28:14 +02:00
14 lines
117 B
ObjectPascal
14 lines
117 B
ObjectPascal
{ %OPT=-vh -Seh }
|
|
|
|
procedure t;
|
|
var
|
|
i: integer = 5;
|
|
defaulti: integer;
|
|
begin
|
|
writeln(i);
|
|
end;
|
|
|
|
begin
|
|
t;
|
|
end.
|