Map (higher-order function): Difference between revisions

Content deleted Content added
m <syntaxhighlight>; <pre> for no lang
The function special form is not required, since there is also a lambda macro
Line 104:
 
<syntaxhighlight lang="lisp">
(maplist (functionlambda (lambdal) (sqr (car l)))
(sqr (car l))))
'(1 2 3 4 5))
</syntaxhighlight>