Skip to content

Instantly share code, notes, and snippets.

@them0nk
Created March 18, 2012 16:41
Show Gist options
  • Save them0nk/2077150 to your computer and use it in GitHub Desktop.
Save them0nk/2077150 to your computer and use it in GitHub Desktop.
Ruby snippets
def reverse_word str
str.split(" ").reverse.join(" ")
end
reverse_word "This is really awesome"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment