Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
        print "$inputArray[$counter]\n";
        traverseArray($counter+1);
    }
    
  2. or download this
    # same initialization as before
    
    ...
        print "$input[$counter]\n";
        traverseArray($counter+1, @input);
    }