http://www.perlmonks.org?node_id=1055038

madM has asked for the wisdom of the Perl Monks concerning the following question:

Hi! i just wanted to know what happens when you use the split operator without nothing and why itīs needed to dereference \@numbers(this code reads a file with a matrix and builds it in the @matrix array) Thanks!
while(<$fastd> ) { chomp; my @numbers = split; push @matrix, \@numbers; }