RandomTIA

From SCAR Divi Manual
Jump to: navigation, search

Definition

function RandomTIA(const Count, Range: Integer): TIntArray;

Availability

SCAR Divi 3.38 > Current

Description

Generates a random TIntArray with a length specified by Count and the range [0,Range-1]. An extended version of this function is available as RandomTIAEx.

Example

begin
  WriteLn(TIAToStr(RandomTIA(10, 10)));
end.

See Also