Difference between revisions of "Random"
From SCAR Divi Manual
(Created page with "==Definition== <func>function Random(const Range: Integer): Integer; </func> ==Availability== SCAR Divi 3.00 > Current ==Description== This function generates a random number f...") |
(No difference)
|
Revision as of 00:51, 26 June 2011
Definition
<func>function Random(const Range: Integer): Integer; </func>
Availability
SCAR Divi 3.00 > Current
Description
This function generates a random number from 0 to Range - 1 and returns it.
Example
var i: Integer; begin for i := 1 to 5 do WriteLn(Random(5)); end.