Created
May 16, 2011 17:09
-
-
Save latentflip/974866 to your computer and use it in GitHub Desktop.
Random list of words
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
words = File.read('/usr/share/dict/words').split | |
(1..10).each do | |
puts words[rand(words.length)] | |
end | |
#=> uncessant | |
rumor | |
deontology | |
engross | |
monomict | |
talemaster | |
dreamful | |
repolon | |
yellowlegs | |
rectorrhaphy |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment