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

22 lines
180 B
ObjectPascal

unit arrayofbyte_unit;
var
BFField:array of byte;
procedure Init;
begin
SetLength(BFField,100);
end;
procedure IncValue;
begin
BFField[0]:=BFField[0]+1;
end;
end.