pascalabcnet/TestSamples/CompilationSamples/arrayofbyte_unit.pas

22 lines
180 B
ObjectPascal
Raw Normal View History

2015-05-14 22:35:07 +03:00
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.