Help for this page

Select Code to Download


  1. or download this
    sub colNOEXISTS () {-1}
    
    # and, then, in the for statement...
    $Columns{$col_name}{exists} == colNOEXISTS 
        and die "your error here: $!";
    
  2. or download this
    $i=1; $j=2; $k=3;
    $l = $i++ * $j++ for 1..$k;
    ...
    
    $i=1; $j=2; $k=3;
    $k=3;