Created
July 17, 2013 09:31
-
-
Save benaskins/6019142 to your computer and use it in GitHub Desktop.
Magic Eight Ball Hash
This file contains 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
ANSWERS = { | |
:positive => | |
[ | |
"It is certain", | |
"It is decidedly so", | |
"Without a doubt", | |
"Yes definitely", | |
"You may rely on it", | |
"As I see it yes", | |
"Most likely", | |
"Outlook good", | |
"Yes", | |
"Signs point to yes" | |
], | |
:neutral => | |
[ | |
"Reply hazy try again", | |
"Ask again later", | |
"Better not tell you now", | |
"Cannot predict now", | |
"Concentrate and ask again" | |
], | |
:negative => | |
[ | |
"Don't count on it", | |
"My reply is no", | |
"My sources say no", | |
"Outlook not so good", | |
"Very doubtful" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment