mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 18:47:56 +02:00
23 lines
218 B
ObjectPascal
23 lines
218 B
ObjectPascal
unit ub0461;
|
|
{$inline on}
|
|
interface
|
|
procedure p1;inline;
|
|
implementation
|
|
|
|
procedure p1;inline;
|
|
var
|
|
i,k : longint;
|
|
|
|
procedure f;
|
|
begin
|
|
i:=20;
|
|
k:=i*10;
|
|
writeln('hello ',k);
|
|
end;
|
|
|
|
begin
|
|
f;
|
|
end;
|
|
|
|
end.
|