6 lines
115 B
Common Lisp
6 lines
115 B
Common Lisp
|
|
(mapc (lambda (&rest args)
|
||
|
|
(format t "~{~A~}~%" args))
|
||
|
|
'(|a| |b| |c|)
|
||
|
|
'(a b c)
|
||
|
|
'(1 2 3))
|