Help for this page

Select Code to Download


  1. or download this
    my @shift = qw/a shifty array/;
    sub foo {
        print @{shift};
    ...
    }
    foo [qw/A mere example/];
    __END__
    
  2. or download this
    ashiftyarrayAmereexample