Help for this page

Select Code to Download


  1. or download this
    if (undef = $WCkey) { ...
    
  2. or download this
    if (undef = $WCkey) { ...
    
  3. or download this
    if (undef == $WCkey) { ...
    
  4. 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.