Changes
/* BASIC floating-point/real variables */
A floating point (real) variable describes a number with integer and fractional parts. The biggest figure which can be stored correctly in RAM by a variable is 2^32-1 = 4294967295.
e.g.
<pre>a! = 3.141592654
</pre>
<pre>PRINT @a!
</pre>