Help for this page

Select Code to Download


  1. or download this
    sub getFiles {
        my @fileNames = [ "manimp1.txt", "manimp2.txt" ];
    ...
        }
    }
    
  2. or download this
    sub getFiles {
        my @fileNames = ( 'manimp1.txt', 'manimp2.txt' );
    ...
        }
    }