Metaprogramming II

class MyClass
  define_method(:dynamic_method) do
    puts "Dynamic method called!"
  end
end

MyClass.new.dynamic_method