System Variables
RND Random Number Generator
Numeric System Variable
 
Contents Decimal numeric, PRECISION 8, random number.
 
Description This system variable contains a different random number each time you use it to return a value. The value will be in the range from 0 (zero) to 1, with a PRECISION of 8.
 
See Also RND( ) Function
 
Example 0010 FOR I=1 TO 3
0020 PRINT RND,
0030 NEXT
0040 PRINT " DONE"; END
-:run
0.76559375 0.5199119 0.9505763 DONE