Ruby - Blocks, Procs, and Lambdas
What will happen if you try to get a Method object for a non-existent method
:run on an object dog in Ruby?class Dog
def bark
"Woof!"
end
end
d = Dog.new
m = d.method(:run)
m.call