mirror of
https://github.com/wren-lang/wren.git
synced 2026-01-11 22:28:45 +01:00
15 lines
281 B
Plaintext
15 lines
281 B
Plaintext
import "random" for Random
|
|
|
|
var random = Random.new(12345)
|
|
|
|
var counts = [0, 0, 0, 0, 0]
|
|
for (i in 1..10000) {
|
|
var n = random.int(5)
|
|
counts[n] = counts[n] + 1
|
|
}
|
|
|
|
for (count in counts) {
|
|
if (count < 1900) System.print("too few")
|
|
if (count > 2100) System.print("too many")
|
|
}
|