pascalabcnet/TestSamples/FormatterTests/input/SY0003.pas
Бондарев Иван e6e67c193c initial commit
2015-05-14 21:35:07 +02:00

13 lines
149 B
ObjectPascal

type
ccc = class(System.Collections.ArrayList)
end;
var
arr: ccc;
begin
arr := new ccc;
arr.Add(3);
writeln(arr[0]);
readln;
end.