sub { pop; shift; }->(@array); #### sub { $_[0] = 'whatever' }->(@array); #### sub { shift; $_[0] = 'whatever' }->(@array); # changes the *second* element of @array