Files
wren/test/math/rand.wren
T

5 lines
72 B
Plaintext
Raw Normal View History

Math.srand
for (i in 1..10) {
IO.print(Math.floor(Math.rand * 100))
}