Returns the fractional part of the argument.
FIX         (argument)
             └──┬───┘ 
       Numeric expression
*The parenthesis enclosing the argument can be omitted when the argument is a numeric value of variable.
FRAC(3.14)
argument: Numeric expression
10  FOR I=1 TO 10
20  N = RAN# * 10
30  LPRINT "FRAC(";N;")=";FRAC N
40  NEXT I
50  END
Isolates fractional parts of random values and outputs results to the printer.