Help for this page

Select Code to Download


  1. or download this
    sub dargv {
        local *ARGV;
    ...
        } @_;
        \@t;
    }
    
  2. or download this
    sub mkaref { [@_] }
    
  3. or download this
    # the most reasonable thing for this strange beast, IMHO
    sub mksref { 
    ...
        my @x = @_;
        sub { @x }; # a closure
    }