Help for this page

Select Code to Download


  1. or download this
    my @headerArray = "a,b,c,d,e,f,g,h,i,j,k";
    my $headerArrayRef = \@headerArray;
    ...
    
        my @headerArrayCopy = @$headingAref;
        print ($file "@headerArrayCopy\n"); #adds header
    
  2. or download this
    my $headerArrayRef = [ "a,b,c,d,e,f,g,h,i,j,k" ];
    
  3. or download this
        for ($currentIndex >= $readLineFrom and $currentIndex <= $readLine
    +To){
    
  4. or download this
        if ($currentIndex >= $readLineFrom and $currentIndex <= $readLineT
    +o){
    
  5. or download this
        if ( $readLineFrom .. $readLineTo ) {