show/hide this revision's text 4 edited title

Perl - How do I pass an associative array a hash to a function in Perl?

show/hide this revision's text 3 edited tags

Perl - pass an associative array to a functiofunction

show/hide this revision's text 2 added 101 characters in body; edited title

Perl - pass an associative array to a functionfunctio

I am having a lot of trouble. I have a function that takes a variable and an associative array, but I can't seem to get them to pass right. I think this has something to do with function declarations, however I can't figure out how they work in Perl. Does anyone know a good reference for this and how to accomplish what I need? I should add that it needs to be passed by reference.

sub PrintAA
{
    my $test       = shift;
    my %aa         = shift;
        print $test . "\n";
        foreach (keys %aa)
        {
                print $_ . " : " . $aa{$_} . "\n";
                $aa{$_} = $aa{$_} . "+";
        }
}
show/hide this revision's text 1