Random number generator (included): Difference between revisions

(Added modules for clarification)
Line 52:
=={{header|AutoHotkey}}==
The built-in command [http://www.autohotkey.com/docs/commands/Random.htm Random] generates a pseudo-random number using Mersenne Twister "MT19937" (see documentation).
 
=={{header|AWK}}==
The built-in command "rand" generates a pseudo-random uniform distributed random variable. More information is available from the documentation of
[http://www.gnu.org/software/gawk/manual/html_node/Numeric-Functions.html gawk].
 
It is important that the RNG is seeded with the funtions "srand", otherwise, the same random number is produced.
 
=={{header|BASIC}}==
Anonymous user