mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-12 15:29:34 +02:00
14 lines
164 B
ObjectPascal
14 lines
164 B
ObjectPascal
{ %OPT=-gh }
|
|
program project1;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
procedure TLResourceListAdd(Values: array of string);
|
|
begin
|
|
end;
|
|
|
|
|
|
begin
|
|
TLResourceListAdd(['Value1']);
|
|
end.
|