random(list)
should work
#1035
Labels
Effort: low
Easy to address issues, ideal for first time contributors!
Priority: low
Status: 4. Ready to implement
We know how to implement this, but who will do it?
Topic: Formulas
Currently to pick a random item from a list you need to either do
first(shuffle(list))
(which is also wasteful) orget(list, random(0, count(list)))
which is also very roundabout.random(list)
should just work.The text was updated successfully, but these errors were encountered: