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

6 lines
131 B
Text
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
(defun print-list (xs)
(if (endp xs)
nil
(prog2$ (cw "~x0~%" (first xs))
(print-list (rest xs)))))