Sujet : Re: Newbie-solved a problem in ANSI common lisp
De : No_spamming (at) *nospam* noWhere_7073.org (B. Pym)
Groupes : comp.lang.lispDate : 18. Jun 2024, 14:43:57
Autres entêtes
Organisation : A noiseless patient Spider
Message-ID : <v4s2ut$1cfk0$1@dont-email.me>
User-Agent : XanaNews/1.18.1.6
Ken Tilton wrote:
...or go green on the parens:
(loop for n upfrom 0
for o in l
collecting (+ o n))
Gauche Scheme
(map + '(20 30 40 50) (lrange 0))
===>
(20 31 42 53)