2 lines
47 B
Common Lisp
2 lines
47 B
Common Lisp
> (map (fn (x) (* x x)) '(1 2 3 4))
|
|
(1 4 9 16)
|
> (map (fn (x) (* x x)) '(1 2 3 4))
|
|
(1 4 9 16)
|