Skip to content

Instantly share code, notes, and snippets.

@mehagel
Created May 6, 2013 21:23
Show Gist options
  • Save mehagel/5528313 to your computer and use it in GitHub Desktop.
Save mehagel/5528313 to your computer and use it in GitHub Desktop.
def reverse_words(str)
new_str= str.split.reverse.join(' ')
return new_str.reverse
end
reverse_words("I cant wait to get home")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment