i saw this snippet of code in a post on google from last year and it
helped me get a better hold on the language... it's so simple, yet
teaches several things, enjoy....


m = 2.method(:+)
p m.call(3)      # => 5
p m.call(4)      # => 6