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

6 lines
110 B
EmacsLisp
Raw Permalink Normal View History

2026-04-30 12:34:36 -04:00
(defun random-choice (items)
(nth (random (length items)) items))
(random-choice '("a" "b" "c"))
;; => "a"