Skip to content

Instantly share code, notes, and snippets.

@taiki45
Created June 23, 2012 10:02
Show Gist options
  • Save taiki45/2977769 to your computer and use it in GitHub Desktop.
Save taiki45/2977769 to your computer and use it in GitHub Desktop.
map on Scheme
(map (lambda (x) (* x x)) (list 1 2 3)) ;=> (1 4 9)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment