mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-07 00:52:36 +02:00
24 lines
183 B
ObjectPascal
24 lines
183 B
ObjectPascal
unit fdt_arrays;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
type
|
|
TBird = class
|
|
public
|
|
Arr: array of longint;
|
|
end;
|
|
|
|
procedure DoIt;
|
|
|
|
implementation
|
|
|
|
procedure DoIt;
|
|
begin
|
|
|
|
end;
|
|
|
|
end.
|
|
|