|
Returns a random int value between 0 (inclusive) and the specified value (exclusive). This works for integers only. |
Returns a random int value between 0 (inclusive) and the specified value (exclusive). This works for integers only.
|
Number
number a = random(4); print("a= " + a); |
Prints: a= 3;