Help for this page

Select Code to Download


  1. or download this
    func(\@arr);
    
  2. or download this
    sub func {
        my $arr =shift;
        print "First: $arr->[0]";
        print "Nested List @{$arr->[0]}";
    }