Returns a random value in the range of 0 to 1.
RAN# ( argument )
└──┬───┘
Numeric expression
*The parenthesis enclosing the argument can be omitted when the argument is a numeric value of variable.
RAN# * 10
argument: Numeric expression
10 R=RAN#(1): PRINT R
20 R=RAN#(0): PRINT R
30 R=RAN#(-1): PRINT R
40 GOTO 10
Generates random numbers using each type (positive, negative, zero) of the argument.