Ruby - Blocks, Procs, and Lambdas
Identify the error in this Ruby code snippet:
class Person
def name
"Alice"
end
end
p = Person.new
m = p.method(name)
m.call