Difference between revisions of "RandomRange"

From SCAR Divi Manual
Jump to: navigation, search
 
Line 8: Line 8:
  
 
==Description==
 
==Description==
Returns a random number from the range ['''aFrom''', '''aTo''' - 1].
+
Returns a random number from the range ['''AFrom''', '''ATo''' - 1].
  
 
==Example==
 
==Example==

Latest revision as of 12:28, 23 September 2011

Definition

function RandomRange(const AFrom, ATo: Integer): Integer;

Availability

SCAR Divi 3.00 > Current

Description

Returns a random number from the range [AFrom, ATo - 1].

Example

var
  i: Integer;

begin
  for i := 1 to 5 do
    WriteLn(RandomRange(1, 5));
end.

See Also