Random number generator (included): Difference between revisions

Add nim prng details
(Added Kotlin)
(Add nim prng details)
Line 486:
=={{header|NetRexx}}==
As NetRexx runs in the JVM it simply leverages the Java library. See [[#Java|Java]] for details of the algorithms used.
 
=={{header|Nim}}==
There are two PRNGs provided in the standard library:
* '''random''' : Based on xoroshiro128+ (xor/rotate/shift/rotate), see [http://xoroshiro.di.unimi.it/ here].
* '''mersenne''' : The Mersenne Twister.
 
=={{header|OCaml}}==
Anonymous user