|
|
| Pathologically Eclectic Rubbish Lister | |
| PerlMonks |
Re: Re: Thoughts on Perl6 - Love it? Hate it?by Anonymous Monk |
| on Jan 11, 2002 at 01:29 UTC ( #137840=note: print w/ replies, xml ) | Need Help?? |
|
I don't want to have to do $filehandle.autoflush(1) instead of $|++. Ugghhh! $++ doesn't do what you think. You think $| == 0 and that $|++ makes $|==1. Sure IFF $|==0. But what when some other fool does $|++. Then your $|++ doesn't do anything. Even worse $|-- doesns't set $|==0, because you blindly did $++. Now maybe your think this turns it into some sort of recursive lock type thing. No! because someone could have done $|=0 or $|=1 in another part or the code, cuz it's is the RightThing(tm). Just remember that $|++ is a SIN. Don't do it. BTW, what does $|==-1 even mean?
In Section
Meditations
|
|
||||||||||||||||||||||||||