9 lines
No EOL
395 B
Text
9 lines
No EOL
395 B
Text
from random import choice
|
|
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"
|
|
]
|
|
print(choice(quotes)) |