Skip to content

Instantly share code, notes, and snippets.

@kkchu791
Created November 16, 2015 20:16
Show Gist options
  • Save kkchu791/435fd5358f37f0f02993 to your computer and use it in GitHub Desktop.
Save kkchu791/435fd5358f37f0f02993 to your computer and use it in GitHub Desktop.
class UnpredictableString < String
def scramble
self.split("").shuffle.join("")
end
end
sentence = UnpredictableString.new("It was a dark and stormy night.")
puts sentence
puts sentence.scramble
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment