Help for this page

Select Code to Download


  1. or download this
    Running this code on 2 OSes, gave me the following results, so far: 
    Lin: /etc/perl
    Win: C:/Perl/site/lib
    
  2. or download this
    for(@INC){
        unless($_ eq '.'){
    ...
            last;
        }
    }
    
  3. or download this
    for(@INC){
        unless($_ eq '.'){
            $libPath .= "$_ ";
        }
    }
    
  4. or download this
    print "@INC\n";