# File lib/slop.rb, line 706
  def method_missing(meth, *args, &block)
    meth = meth.to_s
    if meth[-1] == ??
      present?(meth.chop)
    else
      super
    end
  end