Question: The following CLISP code traverses through a list and prints out each character. Rewrite this function recursively, eliminate looping. (defun traverse (lis) (loop for sublist
The following CLISP code traverses through a list and prints out each character. Rewrite this function recursively, eliminate looping.
(defun traverse (lis)
(loop for sublist in lis
do (loop for var in sublist do (write var) (terpri) ) )) (traverse '((H E L L O)(W O R L D)))
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
