Skip to content

Instantly share code, notes, and snippets.

@keokent
Created May 24, 2013 03:58
Show Gist options
  • Save keokent/5641209 to your computer and use it in GitHub Desktop.
Save keokent/5641209 to your computer and use it in GitHub Desktop.
Rails Tutorial Chapter4 Exercises 2
class String
def shuffle
self.split("").shuffle.join
end
end
p "foobar".shuffle
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment