forked from swee/MeowNex
4 lines
No EOL
237 B
Python
4 lines
No EOL
237 B
Python
#!/usr/bin/python3
|
|
from random import choice
|
|
opinions = ["Oreos are better than Chips Ahoy!", "Human baka, be furry!", "Cereal goes before milk!", "Cereal goes before milk, but what if I pour cereal before bowl?"]
|
|
print(choice(opinions)) |