class String

def downcase_first

def downcase_first
  self[0] = self[0].downcase
  self
end