Skip to content

Instantly share code, notes, and snippets.

@tyler-smith
Created March 12, 2013 03:01
Show Gist options
  • Save tyler-smith/5139961 to your computer and use it in GitHub Desktop.
Save tyler-smith/5139961 to your computer and use it in GitHub Desktop.
1.9.3p286 :005 > a = 'a'
=> "a"
1.9.3p286 :006 > b = [a.method(:to_i), a.method(:upcase)]
=> [#<Method: String#to_i>, #<Method: String#upcase>]
1.9.3p286 :007 > b[1].call
=> "A"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment