Subject: [ruby-talk:16620] ruby is beauty
From: jobeicus hotmail.com (Joseph Benik)
Date: Tue, 19 Jun 2001 20:15:38 +0900
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