![]() |
|
XP is just a number | |
PerlMonks |
Re: Array issueby ysth (Canon) |
on Jan 28, 2004 at 20:22 UTC ( #324767=note: print w/replies, xml ) | Need Help?? |
Use push @listOfPass, $pass to add each password to the end of the array or (less commonly used, except perhaps with @INC)
unshift @listOfPass, $pass to add each to the beginning of the array.
In Section
Seekers of Perl Wisdom
|
|