Skip to content

Instantly share code, notes, and snippets.

@cindywu
Created April 26, 2020 09:07
Show Gist options
  • Save cindywu/edd12c617d9efe00f84ae5387575088c to your computer and use it in GitHub Desktop.
Save cindywu/edd12c617d9efe00f84ae5387575088c to your computer and use it in GitHub Desktop.
🎱
(define answers
'("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."
"Reply hazy, try again."
"Ask again later."
"Better not tell you now."
"Cannot predict now."
"Concentrate and ask again."
"Don't count on it."
"My reply is no."
"My sources say no."
"Outlook not so good."
"Very doubtful."))
(define (eight-ball)
(display "Ask a yes or no question to reveal the future: ")
(define request (read-line))
(newline)
(if (string? request)
(display (list-ref answers (random 20)))
(display "I do not understand your question.")))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment