Help for this page

Select Code to Download


  1. or download this
      my $val1 = $next_cell_arr[0] || die "val1 is undefined!!\n";
    
  2. or download this
    use strict;
    
    ...
        print "val$i is undefined\n" if ( ! defined( $_ ));
        $i++;
    }