Perl in a Nutshell

Perl in a NutshellSearch this book
Previous: Reference: prototypeChapter 5
Function Reference
Next: Reference: q/string/
 

push

push @array, list

Pushes the elements of list onto the end of array. The length of array increases by the length of list. The function returns this new length. See also pop and unshift.


Previous: Reference: prototypePerl in a NutshellNext: Reference: q/string/
Reference: prototypeBook IndexReference: q/string/