A LOAD "patch1" után MERGE "fejtoro" majd RUN 100
Biztos nem erre a megoldásra gondolt Pgyuri, de ez legalább "működik"

és mégis látunk fehér papert vagy bordert.RND gives a random number between 0 and 1, but you can easily get
random numbers in other ranges. For instance, '5*RND' is between 0 and
5, and '1.3+0.7*RND' is between 1.3 and 2. To get whole numbers, uses
INT (remembering that INT always rounds down) as in '1+INT(RND*6)',
which we shall use in a program to simulate dice. 'RND*6' is in the
range 0 to 6, but since it never actually reaches 6, 'INT(RND*6)' is
0, 1, 2, 3, 4 or 5.