Created
June 28, 2020 16:09
-
-
Save dekisugi/98d860c37e57b6da10496826165b0563 to your computer and use it in GitHub Desktop.
手を洗っている最中に再び催すというのを2回連続でやった直後に書いた糞リプトです。便意ともどもお収めください。
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
# これはPerlプログラムを模した作文です。電子計算機において実行するためのものではありません。 | |
$unko = 100; | |
$haraita = 1; | |
while ($haraita) { | |
print "ponponpeinn\n"; | |
wc(); | |
tearai(); | |
} | |
sub wc { | |
print "buriburi\n" x $unko; | |
$unko *= 0.1; | |
$haraita = 0; | |
print "flush\n"; | |
} | |
sub tearai { | |
print "wash\n" x 30; | |
$haraita = 1 if ($unko >= 1); | |
print "clean hand\n"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment