3 lines
64 B
Common Lisp
3 lines
64 B
Common Lisp
(mapc (lambda (x)
|
|
(message "x=%d" x))
|
|
'(1 2 3 4))
|