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
#!/usr/bin/ruby | |
# some fish! | |
fish = %w{ fish fish2 fish3 fish4 fish5 fish6 fish7 } | |
# At least 3 lines | |
lines = rand(4) + 3 | |
output = "" |
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
#!/usr/bin/env ruby | |
VALUES = [ | |
[1, %w{ e a o t i n r }], | |
[2, %w{ d g }], | |
[3, %w{ c m b p }], | |
[4, %w{ h f w y v }], | |
[5, %w{ k }], | |
[8, %w{ h x }], | |
[10, %w{ q z }] |
OlderNewer