Returns a Double random number.
# = Random(n)
n:Double expression
Returns a 64-bit floating point random number between 0 (inclusive) and n (exclusive). Random is a floating-point operation and takes some more time to execute than Rand.
When the numeric expression n is an integer, all numbers have the same probability of being selected, and vice versa. Random(n) is equivalent to Trunc(Rnd*n).
OpenW # 1
Print Random(10)
Prints a random number between 0 and 10.
{Created by Sjouke Hamstra; Last updated: 22/10/2014 by James Gaite}