Skip to content

Instantly share code, notes, and snippets.

@SrdjanCoric
Created October 20, 2018 14:59
Show Gist options
  • Save SrdjanCoric/610887250879d4e5eafd68a39867de6b to your computer and use it in GitHub Desktop.
Save SrdjanCoric/610887250879d4e5eafd68a39867de6b to your computer and use it in GitHub Desktop.
def spin_me(str)
str.split.each do |word|
word.reverse!
end.join(" ")
end
spin_me("hello world")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment