Skip to content

Instantly share code, notes, and snippets.

@alebaffa
Created March 10, 2014 14:03
Show Gist options
  • Save alebaffa/9465485 to your computer and use it in GitHub Desktop.
Save alebaffa/9465485 to your computer and use it in GitHub Desktop.
This is a second version, but with the method scramble this time as a class method (instead of instance method).
class String
def self.scramble
"this is an example".split(//).shuffle.join
end
end
puts String.scramble
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment