Ruby - Advanced Metaprogramming
Identify the error in this Ruby code:
class Test
def method_added(name)
puts "Added: #{name}"
end
def example; end
end
