Difference between revisions of "TIAAppend"

From SCAR Divi Manual
Jump to: navigation, search
(Created page with "==Definition== <source lang="scar" lines="false"> procedure TIAAppend(var TIA: TIntArray; const Int: Integer); </source> ==Availability== SCAR Divi 3.28 > Current ==Description...")
(No difference)

Revision as of 19:46, 24 October 2011

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