Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    use strict;
    ...
    for my $track (@tracks){
        print <$track>;
    }
    
  2. or download this
    #!/usr/bin/perl
    use strict;
    ...
        my ($trackFile, $lines) = @$track;
        print <$trackFile>;
    }