| RND | Random Number Generator | 
Decimal numeric, PRECISION 8, random number
The RND variable contains a different random number each time you use it to return a value. The value will be in the range from 0 to 1 with a PRECISION of 8.
RND( ) Return Random Number
PRECISION Change Current Precision
for I=1 to 3
     print rnd,
 next
 print " DONE";
 end
 ->run
 0.76559375 0.5199119 0.9505763 DONE