Help for this page

Select Code to Download


  1. or download this
    my @arr = (0,1,2);
    my @nested = (3,4,\@arr);
    
    print scalar @{$nested[2]};
    
  2. or download this
    3