in reply to Re: determining length of multidimensional arraysin thread determining length of multidimensional arrays
Or also due to the same Perl oddness OP could:
my @arr = (0,1,2); my @nested = (3,4,\@arr); print scalar @{$nested[2]}; [download]
Prints:
3 [download]