3 lines
90 B
Common Lisp
3 lines
90 B
Common Lisp
(loop for ref = list then (rest ref)
|
|
until (null ref)
|
|
do (print (first ref)))
|