RosettaCodeData/Task/Loops-Foreach/ACL2/loops-foreach.acl2

6 lines
131 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
(defun print-list (xs)
(if (endp xs)
nil
(prog2$ (cw "~x0~%" (first xs))
(print-list (rest xs)))))