in reply to Alternative for push
push(@array, 'ree'); $array[$#array+1] = 'ree'; $array[@array] = 'ree'; splice(@array,@array,0,'ree'); @array=(@array,'ree'); [download]