# # string_or_symbol? # class Object def string_or_symbol?; false end end class String def string_or_symbol?; true end end class Symbol def string_or_symbol?; true end end