- or download this
if (undef = $WCkey) { ...
- or download this
if (undef = $WCkey) { ...
- or download this
if (undef == $WCkey) { ...
- or download this
>perl -we "if (undef = $foo) { print 'bar' }"
Name "main::foo" used only once: possible typo at -e line 1.
...
>perl -we "if ($foo = undef) { print 'bar' }"
Name "main::foo" used only once: possible typo at -e line 1.