# File lib/more/facets/openmodule.rb, line 8
  def method_missing(s, *a, &b)
    if block_given?
      define_method(s, &b)
    else
      super
    end
  end