Guest User

Untitled

a guest
May 23rd, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. ruby-1.8.7-p299 ➜ ~ irb
  2. ruby-1.8.7-p299 > k = (1..3).map { |x| lambda { x } }
  3. => [#<Proc:0x0000000100454f10@(irb):1>, #<Proc:0x0000000100454f10@(irb):1>, #<Proc:0x0000000100454f10@(irb):1>]
  4. ruby-1.8.7-p299 > k[0].call
  5. => 1
Add Comment
Please, Sign In to add comment