Changes
/* <code>RANDOMIZE [seed]</code> */
RANDOMIZE TIME
</pre>
The algorithm used for randomizing is the following: the generator starts with the seed, adds 1, multiplies by 75 (fiddle factor), divides by 65537 and then uses the remainder -1.
==== <code>READ variable</code> ====