transcendental-lisp/lisp/random/list-builder.lisp

6 lines
163 B
Common Lisp
Raw Normal View History

(load "../lang/functions.lisp")
(defun list-doubler (seed times-to-double)
(if (< times-to-double 1) seed
(recur (append seed seed) (- times-to-double 1))))