metaperl has asked for the wisdom of the Perl Monks concerning the following question:
but it seems odd that @_ was not explicitly passed... is it automatically passed somehow?sub http_post($$@) { my $url = shift; unshift @_, "POST", $url, "body"; &http_request }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: He didnt explicitly pass @_
by parv (Parson) on Apr 21, 2009 at 15:55 UTC | |
by Bloodnok (Vicar) on Apr 21, 2009 at 16:00 UTC | |
by parv (Parson) on Apr 21, 2009 at 16:26 UTC | |
by Bloodnok (Vicar) on Apr 21, 2009 at 17:08 UTC | |
by tye (Sage) on Apr 22, 2009 at 02:52 UTC |