Skip to content

Instantly share code, notes, and snippets.

@ravelll
Last active December 17, 2015 16:49
Show Gist options
  • Save ravelll/5641031 to your computer and use it in GitHub Desktop.
Save ravelll/5641031 to your computer and use it in GitHub Desktop.
ruby on rails tutorial Chapter4 exercise2
class String
def shuffle
self.split('').shuffle.join
end
end
puts "asdffdsa".shuffle
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment