From: zslevi Date: 2009-01-14T19:09:14+09:00 Subject: Higher order ruby foo = lambda {|x| lambda {|y| return x+y}} foo.call(3)(4) Why this doesn't work? I expected lamdas to behave like in SML.