Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- add_5 = proc { |x| x + 5 }
- add_5.call 10 #=> 15
- add = proc { |x, y| x + y}
- add.call 12, 5
- add_5 = Proc.new { |x| x + 5 }
- add_5.call 4 #=> 9
Advertisement