Ruby - Advanced Metaprogramming
What will this Ruby code print?
class Sample
def self.method_added(name)
puts "Added: #{name}"
end
def foo; end
def bar; end
end
