Skip to content

Instantly share code, notes, and snippets.

@jackfranklin
Created August 12, 2014 08:47
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save jackfranklin/b774a3c976b126356972 to your computer and use it in GitHub Desktop.
Save jackfranklin/b774a3c976b126356972 to your computer and use it in GitHub Desktop.
def double(x)
x * 2
end
p [1,2,3].map(&method(:double))
# [2, 4, 6]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment