4 lines
76 B
Text
4 lines
76 B
Text
|
|
let array_rand ary =
|
||
|
|
let len = Array.length ary in
|
||
|
|
ary.(Random.int len)
|