Warning

You're browsing the old v2.x documentation. This version is no longer maintained. Click here to go the v3.x documentation.

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
rnd [2019/05/07 22:01] neilsrnd [2021/01/18 11:35] (current) neils
Line 15: Line 15:
   print "we'll flip a coin"   print "we'll flip a coin"
   if rnd() < 0 then print "heads" else print "tails"   if rnd() < 0 then print "heads" else print "tails"
- + 
 +The pseudo-random number generator is seeded with the software jiffy clock value on program startup. 
 + 
 +**Note for VICE users**: if you run your program using autorun, the jiffy value will be the same every time you run your program and therefore random sequences will always be the same, too. You can improve this a little bit by setting the ''AutostartDelayRandom'' option. The best option however is to manually load your program, just like a user would on a real machine.