3 lines
83 B
Text
3 lines
83 B
Text
let list_rand lst =
|
|
let len = List.length lst in
|
|
List.nth lst (Random.int len)
|