mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-11 17:48:53 +02:00
16 lines
157 B
ObjectPascal
16 lines
157 B
ObjectPascal
{$mode objfpc}
|
|
|
|
procedure pext(a:array of extended);
|
|
begin
|
|
end;
|
|
|
|
procedure p(a:array of const);
|
|
begin
|
|
end;
|
|
|
|
begin
|
|
p([0.0]);
|
|
p([pi]);
|
|
pext([0.0]);
|
|
end.
|