Skip to content

Instantly share code, notes, and snippets.

@thepeopleseason
Created October 28, 2022 20:13
Show Gist options
  • Save thepeopleseason/7cd3865f35c92fcf2e74c5304ee55b60 to your computer and use it in GitHub Desktop.
Save thepeopleseason/7cd3865f35c92fcf2e74c5304ee55b60 to your computer and use it in GitHub Desktop.
#!/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