Created
September 1, 2024 15:04
-
-
Save wremeika/2b47a9f01f925f1230c5e1891a6ac6c3 to your computer and use it in GitHub Desktop.
Kotlin Magic 8 Ball Array
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
private val responseBank = listOf( | |
Response("It is certain"), | |
Response("It is decidedly so"), | |
Response("Without a doubt"), | |
Response("Yes, definitely"), | |
Response("You may rely on it"), | |
Response("As I see it, yes"), | |
Response("Most likely"), | |
Response("Outlook good"), | |
Response("Yes"), | |
Response("Signs point to yes"), | |
Response("Reply hazy try again"), | |
Response("Ask again later"), | |
Response("Better not tell you now"), | |
Response("Cannot predict now"), | |
Response("Concentrate and ask again"), | |
Response("Don't count on it"), | |
Response("My reply is no"), | |
Response("My sources say no"), | |
Response("Outlook not so good"), | |
Response("Very doubtful") | |
) |
Sign in
to join this conversation on GitHub.