RosettaCodeData/Task/Pick-random-element/Maxima/pick-random-element.maxima

5 lines
138 B
Text
Raw Permalink Normal View History

2015-02-20 00:35:01 -05:00
random_element(l):= part(l, 1+random(length(l)));
/* (%i1) random_element(['a, 'b, 'c]);
(%o1) c
*/