Help for this page

Select Code to Download


  1. or download this
    P:\test>perl -c -mstrict -w junk.pl
    Scalar value @_[0] better written as $_[0] at junk.pl line 6.
    ...
    Can't use global @_ in "my" at junk.pl line 6, near "glob @_"
    syntax error at junk.pl line 17, near "}"
    junk.pl had compilation errors.
    
  2. or download this
    #! perl -w
    use strict;
    ...
        }
    }
    recurseDir2($dir)