in reply to Recieving lists as arguments
So, if you in fact only want one, use shift; or shift(@_);## Implicit @_ $data = shift; ## Explicit @_ $data = shift(@_); ## Explicit void context $null = shift();
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Recieving lists as arguments
by japhy (Canon) on Jul 12, 2001 at 22:15 UTC |