Help for this page

Select Code to Download


  1. or download this
    my $filename = shift;
    
    ...
    sub foo {
       my $x = shift;
    }
    
  2. or download this
    my $filename = shift @ARGV;
    
    ...
    sub foo {
       my $x = shift @_;
    }