TIAAppend

From SCAR Divi Manual
Revision as of 19:46, 24 October 2011 by Freddy (talk | contribs) (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...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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