AA
Size: a a a
AA
AA
PROC map = (PROC(REAL)REAL f, RLIST xs)RLIST:
(xs IS NIL | NIL | cons(f(head(xs)), map(f,tail(xs))));
AV
AA
AC
A
Y
Y
PROC map = (PROC(REAL)REAL f, RLIST xs)RLIST:
(xs IS NIL | NIL | cons(f(head(xs)), map(f,tail(xs))));
LO
PROC map = (PROC(REAL)REAL f, RLIST xs)RLIST:
(xs IS NIL | NIL | cons(f(head(xs)), map(f,tail(xs))));
AA
Y
L
LO
AA
REAL a = 2.0;
printlist(map((REAL x)REAL: x + a, 3.0 FROMTO 10.0))
R
AV
AA
AA
AV