NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.
All the Perl that's Practical to Extract and Report
Stories, comments, journals, and other submissions on use Perl; are Copyright 1998-2006, their respective owners.
Feature (Score:2)
See also
$| only has two values, 0 and 1. I thought this was documented in perlvar but it doesn't seem to be. Perhaps it should be.
Re:Feature (Score:2)
To me that sounds like it will return the moral equivalent of true or false (zero and one in this case) based on what the state of $| is.
Casey West
Re:Feature (Score:2)
Actually, this also occurs with $^W:
# perl -le 'print $^W; $^W--; print $^W';0
1
Reply to This
Parent