(msg-list x) → msg
Function: msg-list
(defun msg-list (x) (declare (xargs :guard t)) (let ((__function__ 'msg-list)) (declare (ignorable __function__)) (if (atom x) "" (if (car x) (msg "~@0~%~@1" (car x) (msg-list (cdr x))) (msg-list (cdr x))))))