Skip to content

Instantly share code, notes, and snippets.

@fdelacruz
Created August 7, 2014 00:48
Show Gist options
  • Select an option

  • Save fdelacruz/e03fec47ca271c44baf6 to your computer and use it in GitHub Desktop.

Select an option

Save fdelacruz/e03fec47ca271c44baf6 to your computer and use it in GitHub Desktop.
cube = Proc.new { |x| x ** 3 }
[1, 2, 3].collect!(&cube) #=>[ 1, 8, 27]
[4, 5, 6].map!(&cube) #=>[64, 125, 216]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment