Help for this page

Select Code to Download


  1. or download this
    if (exists($h{x} && defined($h{x}) && $h{x})
    
  2. or download this
    if ($h{x})
    
  3. or download this
    if (defined($s) && length($s))
    
  4. or download this
    if (length($s))
    
  5. or download this
    my $length = length($undef);  # Used to warn here.
    print $length;                # Still warn here.
    ...
    pack 'N', $length             # Still warn here.
    
    ...