in reply to I just can't figure this out...
So you could say:
Now you've got a hash ref in $hash_ref, and you can dereference it to see what it holds. You could now say:my $hash_ref = $I{F};
So, if we put those together and eliminate the temporary variable, we getmy $op = $hash_ref->{'op'};
which is the same asmy $op = $I{F}->{op};
because Perl lets you eliminate the dereferencing arrows between brackets subscripts.my $op = $I{F}{op};
Take a look at perlref, perldsc, and perllol.
|
|---|