lisp:landoflisp: added 'random practice'
This commit is contained in:
@ -0,0 +1,7 @@
|
||||
(defun print-list(lst)
|
||||
(if lst
|
||||
(progn
|
||||
(print(car lst))
|
||||
(print-list(cdr lst)))
|
||||
'DONE))
|
||||
|
Reference in New Issue
Block a user