lisp:landoflisp: added 'random practice'

This commit is contained in:
Logen Kain 2017-07-22 14:52:32 -07:00
parent 115c8a46d8
commit 12d59eb84f

View File

@ -0,0 +1,7 @@
(defun print-list(lst)
(if lst
(progn
(print(car lst))
(print-list(cdr lst)))
'DONE))