in reply to Re: Plural variable naming (or not?)
in thread Plural variable naming (or not?)
Does this look right? Accessing a plural array for a singular element
my @replies = ( 'so', 'plurals', { 'you' => 'think?' } ); my $answer = $replies[2]->{you}; print $answer;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Plural variable naming (or not?)
by cjf (Parson) on Mar 19, 2002 at 20:36 UTC |