Random number generator (included): Difference between revisions

Content added Content deleted
Line 209: Line 209:
=={{header|Delphi}}==
=={{header|Delphi}}==
According to [[wp:Linear_congruential_generator#Parameters_in_common_use|Wikipedia]], Delphi uses a Linear Congruential Generator.
According to [[wp:Linear_congruential_generator#Parameters_in_common_use|Wikipedia]], Delphi uses a Linear Congruential Generator.

Random functions:
function Random : Extended;
function Random ( LimitPlusOne : Integer ) : Integer;
procedure Randomize;


=={{header|DWScript}}==
=={{header|DWScript}}==