Add a random module.

This commit is contained in:
Bob Nystrom
2015-10-17 11:03:15 -07:00
parent 49601e67c5
commit 8436ce1934
17 changed files with 346 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
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")
}