in reply to Re: Re: Passing a list to an Object
in thread Passing a list to an Object
Simply shift off the first argument from @_ before proceeding with messing with it:
sub doThat { my $self = shift; my %ARGS = (chew => 'meat', @_); return "I like to chew $ARGS{chew}!\n"; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Re: Passing a list to an Object
by lzcd (Pilgrim) on Jan 13, 2001 at 07:33 UTC |