1: 2: 3: 4:
for ($j = 0; $j < @list_of_templates; $j++) { $m_size = @list_of_templates[$j]; print $m_size; }
for ($j = 0; $j < @list_of_templates; $j++) { my $m_size = @{$list_of_templates[$j]}; print "$m_size\n"; }