On Sat, Mar 09, 2013 at 07:24:37AM -0600, Chris Stinemetz wrote:
> Each anonymous array @files and @newFiles has 5 total elements.

Just to nitpick, @files and @newFiles are not anonymous arrays.
They are just arrays. They have names. You cannot have anonymous
arrays in Perl except by reference. That is, [] gives you a
reference to an anonymous array.

  my @named_array = (1,2,3);
  my $anon_array_ref = [1,2,3];
  my @named_array_copy_of_anon_array = @$anon_array_ref;

Regards,


-- 
Brandon McCaig <bamcc...@gmail.com> <bamcc...@castopulence.org>
Castopulence Software <https://www.castopulence.org/>
Blog <http://www.bamccaig.com/>
perl -E '$_=q{V zrna gur orfg jvgu jung V fnl. }.
q{Vg qbrfa'\''g nyjnlf fbhaq gung jnl.};
tr/A-Ma-mN-Zn-z/N-Zn-zA-Ma-m/;say'

Attachment: signature.asc
Description: Digital signature

Reply via email to