mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 12:38:29 +02:00
18 lines
292 B
ObjectPascal
18 lines
292 B
ObjectPascal
{$mode objfpc}
|
|
type
|
|
TObj = object
|
|
function GetItem(const i :Integer) :Integer;
|
|
property Items[i :Integer] :Integer read GetItem; default;
|
|
end;
|
|
|
|
function TObj.GetItem(const i :Integer) :Integer;
|
|
begin
|
|
Result := i;
|
|
end;
|
|
|
|
var
|
|
Obj :TObj;
|
|
|
|
begin
|
|
WriteLn(Obj[0],' ',Obj[10]);
|
|
end. |