in reply to Re: array manipulation
in thread array manipulation
@a = 0..10; $[ = 2; warn $a[2]; warn splice(@a, 2, 1, 6); warn @a; __END__ 0 at - line 3. 0 at - line 4. 612345678910 at - line 5.
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^3: array manipulation
by si_lence (Deacon) on Jun 16, 2009 at 14:52 UTC |