RosettaCodeData/Task/Pick-random-element/Emacs-Lisp/pick-random-element.l

6 lines
110 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
(defun random-choice (items)
(nth (random (length items)) items))
(random-choice '("a" "b" "c"))
;; => "a"