This very simple script:
REBOL []
view layout [
button "Rand" [alert to-string random 100]
]
gives the following results:
- 1-st run: 95, 52, 80, 96 ...
- 2-nd run: 95, 52, 80, 96 ...
- 3-rd run: 95, 52, 80, 96 ...
...
This is obviously not random because the same numbers repeat over and over again.
- Should I issue a bug report to the REBOL website?
- Is there a simple way to fix it?