Created
October 28, 2022 20:13
-
-
Save thepeopleseason/7cd3865f35c92fcf2e74c5304ee55b60 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/local/bin/perl | |
# | |
# grossinator -- randomly outputs a gross sentence | |
# likely this is probably the dumbest perl script ever written | |
# | |
@first = ("I'm gonna make ", | |
"It's time for ", | |
"There's nothing like ", | |
"You're like ", | |
"I just love ", | |
"How about ", | |
"Let's all make "); | |
@second = ("a horrible, ", | |
"a long, ", | |
"a revolting, ", | |
"a disgusting, ", | |
"a big, ", | |
"a slimy, ", | |
"a foul, "); | |
@third = ("gross ", | |
"smelly ", | |
"oozing ", | |
"awful ", | |
"putrid ", | |
"wretched ", | |
"stinky "); | |
@fourth = ("fart!", | |
"burp!", | |
"scab!", | |
"mmbooger!", | |
"snot!", | |
"barf!", | |
"puke!", | |
"poop!"); | |
srand($$); | |
print($first[rand(@first)], | |
$second[rand(@second)]. | |
$third[rand(@third)], | |
$fourth[rand(@fourth)],"\n"); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment