Title here
Summary here
(let choice (fun (_L) (...)))
Select a random element from a list
Note: If the list is empty, returns nil
Author: @SuperFola
_L: list of elements(let data [1 2 3 4 5])
(print (random:choice data))
(let shuffle (fun (_L) (...)))
Shuffle a given list
Note: The original list is not modified
Author: @SuperFola
_L: list to shuffle(let data [1 2 3 4 5])
(let randomized (random:shuffle data))