TIAAppend

From SCAR Divi Manual
Revision as of 19:46, 24 October 2011 by Freddy (talk | contribs)
Jump to: navigation, search

Definition

procedure TIAAppend(var TIA: TIntArray; const Int: Integer);

Availability

SCAR Divi 3.28 > Current

Description

Appends the given integer Int to end of the given TIntArray TIA.

Example

var
  TIA: TIntArray;

begin
  TIA := [0, 1, 3];
  TIAAppend(TIA, 4);
  WriteLn(TIAToStr(TIA));
end.

Output:

0,1,3,4

See Also