I have not understood at all the command RND.
As an exemple:
flipB% = INT(RND * 4) + 1
PRINT flipB%
generates and prints a ramdom number between 1 and 4, but it is always 3. So: why 3, and, if it is a random number, why always only 3?
If I want a true random numer, I have to tape:
RANDOMIZE TIMER
flipB% = INT(RND * 4) + 1
PRINT flipB%
in this case, every time I run the program, I can actually have a number between 1 and 4.
so, if RND alone don't generate a random numer, what is its utility without RANDOMIZE TIMER? why RND don't generate itself a random number? And what is the use of RANDOMIZE TIMER without RND?