MeowNex/cc/idtr14y
2025-02-25 21:32:22 -08:00

16 lines
No EOL
605 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 int(environ["MNCHOICE"]) == e:
e = randint(0, len(quotes)-1)
environ["MNCHOICE"] = str(e)
print(quotes[e])