in reply to Re^2: strange boolean algebra behaviour
in thread strange boolean algebra behaviour
-p
$ perl -MO=Deparse -e " my $foo = $bar and $baz; " $baz if my $foo = $bar; -e syntax OK $ perl -MO=Deparse,-p -e " my $foo = $bar and $baz; " ((my $foo = $bar) and $baz); -e syntax OK
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: strange boolean algebra behaviour
by remiah (Hermit) on Apr 05, 2012 at 15:21 UTC |