[plt-scheme] help with higher order functions

From: Grant Rettke (grettke at acm.org)
Date: Wed Mar 18 11:43:34 EDT 2009

On Wed, Mar 18, 2009 at 9:42 AM, Todd O'Bryan <toddobryan at gmail.com> wrote:
> What is the proper Scheme idiom to write this function?

I am not sure the scope of proper to which you refer but are you
looking for something like this:

(map + '(1 1 1) '(1 1 1))

=> (2 2 2)

or more?


Posted on the users mailing list.