in reply to Push and list context
use warnings; use strict; my @array = qw/one two three/; my @reversed = reverse @array; print "@array @reversed", "\n";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Push and list context
by Mugatu (Monk) on Mar 15, 2005 at 16:53 UTC |