Help for this page

Select Code to Download


  1. or download this
    $ perl -MO=Deparse,-p -
    my($Files) = @_;
    my $FilesR = @_;
    ...
    (my($Files) = @_);
    (my $FilesR = @_);
    - syntax OK
    
  2. or download this
    
    @_ = 0 .. 3;
    ...
    one(0)two(1)three(2)
    one(4)two()three()