forked from Mirror/wren
6 lines
134 B
Plaintext
6 lines
134 B
Plaintext
import "random" for Random
|
|
|
|
var random = Random.new(12345)
|
|
|
|
random.sample([]) // expect runtime error: Not enough elements to sample.
|