Ruby - Advanced Metaprogramming
Given this code, what will be printed?
class A
def self.inherited(subclass)
puts "Inherited by #{subclass}"
end
end
class B < A; end
class C < B; end