Hi,

Which would be the best method for creating a better program, accessing the
content of a hash or a dereference like $hash{key}, $ref->{key} in many
places in the script, or using:

my $value = $hash{key}, ... my $value = $ref->{key} then using $value for
many times in the rest of the script?

Would be the second way faster, or it won't make any difference?

Thank you.

Teddy


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>


Reply via email to