block = proc { |x| puts "Called with #{x}" } block.call(1) block.call(2) block[222]
Called with 1 Called with 2 Called with 222