in reply to Reading and Formatting RSS Feed
How do you work with a refrence to an array of hash refrences?
my $ref = [ { foo => 'bar' }, { baz => 'qux' } ]; print $ref->[0]{foo}, "\n"; print $ref->[1]{baz}, "\n";
BTW, It's r-e-f-e-r-e-n-c-e with 4 'e's.
-sauoq "My two cents aren't worth a dime.";
|
|---|