http://www.perlmonks.org?node_id=503114


in reply to (jeffa) Re: Poor Perl Idioms Explained (except not really)
in thread Perl Idioms Explained - $|++

what if someday the default for $| is instead 1?
That's not the problem:
$ perl -le '$| = 1; $|++; print $|++' 1
The problem is that it might confuse someone who doesn't know about this particular piece of DWIMmery.

Update: removed unfunny joke