in reply to Re^2: Can you spot the problem?
in thread Can you spot the problem?

The bitwise operators are the only place where this doesn't apply.
Nope.
#!/usr/bin/perl -l $_ = "a"; $_ ++; print; $_ == $_; $_ ++; print; __END__ b 1

Abigail

Replies are listed 'Best First'.
Re^2: Can you spot the problem?
by adrianh (Chancellor) on Mar 10, 2004 at 21:39 UTC

    Ya got me ;-)