forked from Mirror/wren
13 lines
266 B
Plaintext
13 lines
266 B
Plaintext
import "random" for Random
|
|
|
|
var random1 = Random.new(123)
|
|
var random2 = Random.new(123)
|
|
|
|
var correct = 0
|
|
for (i in 1..100) {
|
|
// Should produce the same values.
|
|
if (random1.float() == random2.float()) correct = correct + 1
|
|
}
|
|
|
|
System.print(correct) // expect: 100
|