class String

def start_with?(str)

def start_with?(str)
  self[0, str.length] == str
end