Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
            ];
    -1
    $VAR1 = [];
    
  2. or download this
    sub myfunc {
        my ($aref) = @_;
        $aref->[0] = 'foo';
        print 'in sub ', Dumper($aref);
    }