in reply to "Useless use of a constant" in grep block?

Well, this
push @ary, "foo" unless grep { "foo" } @ary;

is a funny way to say

push @ary, "foo" if 0 == @ary;

so it is just TIMTOWTDI ;-)

perl -le'print map{pack c,($-++?1:13)+ord}split//,ESEL'