Help for this page

Select Code to Download


  1. or download this
    for (1 .. 10) { 
        require "./foo.pl"; 
        delete $INC{ './foo.pl' };
    }
    
  2. or download this
    $ echo 'print@ARGV' > t;
    $ perl -le 'for ( 1 .. 3 ) { @ARGV = $_; require"t"; delete $INC{"t"} 
    +}'
    1
    2
    3