view bin/blessyou @ 11300:3d3ef2b0ffe7

<int-e> learn Recursed is a game of surprising depth.
author HackBot
date Tue, 02 Jan 2018 19:08:00 +0000
parents 4cc6f4753408
children fea38c2307ee
line wrap: on
line source

#!/usr/bin/perl
$_ = (join " ", @ARGV) || `words`; s/^\s+|\s+$//g; print "Bless you, $_. "; if (/[aeiouyAEIOUY]/) { s/^[^aeiouyAEIOUY]*/Bl/; } else { s/^./B/; } print "$_.";