On 11-08-18 10:51 AM, Zak wrote:
@array=(A, B, C, D, $array[0], E, F)

This is the same as:

{
  my @temporary = @array;
  @array = ( A, B, C, D, $temporary[0], E, F );
}


--
Just my 0.00000002 million dollars worth,
  Shawn

Confusion is the first step of understanding.

Programming is as much about organization and communication
as it is about coding.

The secret to great software:  Fail early & often.

Eliminate software piracy:  use only FLOSS.

"Make something worthwhile."  -- Dear Hunter

--
To unsubscribe, e-mail: beginners-unsubscr...@perl.org
For additional commands, e-mail: beginners-h...@perl.org
http://learn.perl.org/


Reply via email to