MeowNex/cc/idtr14y
2025-02-25 21:31:58 -08:00

16 lines
No EOL
593 B
Text

from random import randint
from os import environ
quotes = [
"I don't think regular 14 year olds would use IRC",
"I don't think regular 14 year olds would be a programmer",
"I don't think regular 14 year olds would use the internet properly",
"I don't think regular 14 year olds would be a silly goober",
"I don't think regular 14 year olds would put MeowNexUS cc's in helps"
]
if not "MNCHOICE" in environ:
environ["MNCHOICE"] = -1
e = randint(0, len(quotes)-1)
while environ["MNCHOICE"] == e:
e = randint(0, len(quotes)-1)
environ["MNCHOICE"] = e
print(quotes[e])