Help for this page
my @temp = ('bob', ['carol', 'ted'], 'alice', ['felicity', 'austin'], +'arturo'); my @rows; ... push @rows, [ @temp[0..2] ]; # @rows is now (['bob', ['carol', 'ted'], 'alice'])
my @temp = \('foo', 'bar'); # @temp now (['foo'], ['bar']), not (['foo', 'bar'])