RosettaCodeData/Task/Singly-linked-list-Traversal/ACL2/singly-linked-list-traversal.acl2
Ingy döt Net 68f8f3e56b all tasks
2013-04-11 01:07:29 -07:00

5 lines
137 B
Text

(defun traverse (xs)
(if (endp xs)
(cw "End.~%")
(prog2$ (cw "~x0~%" (first xs))
(traverse (rest xs)))))