mirror of
https://github.com/wren-lang/wren.git
synced 2026-01-11 22:28:45 +01:00
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
|