generate a random number in perl
December 5th, 2006 by Lawrence David
the rand() function will return a value drawn from the uniform distribution.
rand() alone returns a value from (0,1).
rand(x) returns a value from (0,x).
December 5th, 2006 by Lawrence David
the rand() function will return a value drawn from the uniform distribution.
rand() alone returns a value from (0,1).
rand(x) returns a value from (0,x).