Random number generator (included): Difference between revisions

m
(Add Déjà Vu)
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|BASIC}}==
 
The RND function generates a pseudo random number greater than or equal to zero, but less than one. The implementation is machine specific based on contents of the ROM and there is no fixed algorithm.
 
=={{header|Batch File}}==