http://qs321.pair.com?node_id=1131033


in reply to Re^3: Mystery interaction between split and gobbling arrays
in thread Mystery interaction between split and gobbling arrays

You realize that your additional commas are completely ignored by the perl interpreter?

perl -MO=Deparse,-P -e 'my ($x, @y) = (1,2,,,,,); print $#y' my($x, @y) = (1, 2); print $#y; -e syntax OK