2013-10-08 34 views

回答

4
use warnings; 
use strict; 

my @arr = [5..24]; 
print scalar @{ $arr[0] }, "\n"; 

__END__ 

20