mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-15 01:59:45 +02:00
10 lines
122 B
ObjectPascal
10 lines
122 B
ObjectPascal
|
|
procedure array_test(b: integer; parr: array of word; c: integer);
|
|
begin
|
|
end;
|
|
|
|
|
|
begin
|
|
array_test(0,[12,33,45],0);
|
|
end.
|