forked from swee/MeowNex
4 lines
142 B
Text
4 lines
142 B
Text
|
#!/usr/bin/python3
|
||
|
from random import choice
|
||
|
opinions = ["Oreos are better than Chips Ahoy!", "Human baka, be furry!"]
|
||
|
print(choice(opinions))
|