- or download this
..., scalar param($name), ...
- or download this
... ( multi_param($name) )[0] ... # First value
... ( multi_param($name) )[-1] ... # Last value
- or download this
my( $one, $two );
while( ( $One, $two ) = ( get_list() )[0,3] ) {
# Loops until get_list() returns an empty list.
}
- or download this
my $scalar;
while( ( $scalar ) = ( get_list() )[0] ) {
...
}