random
Jump to navigation
Jump to search
Notes
-
x=floor(random 5) will return 0,1,2,3 or 4.
x=ceil(random 5) will return 0, 1,2,3,4 or 5. (0 is unlikely, but possible, as ceil 0 is 0)