6 lines
182 B
Common Lisp
6 lines
182 B
Common Lisp
|
|
(defvar *list* '(one two three four five))
|
||
|
|
|
||
|
|
(print (nth (random (length *list*)) *list*))
|
||
|
|
(print (nth (random (length *list*)) *list*))
|
||
|
|
(print (nth (random (length *list*)) *list*))
|