Help for this page

Select Code to Download


  1. or download this
       if ( (undef,undef) ) { }   # a list of undefs is false
    
       @arr = (undef,undef);
       if ( @arr ) {}             # an array of undefs is true
    
  2. or download this
       $_ = 'x';
       if (($a,$b) = m/(.)(.)/) { }