I'm totally new in perl. I want to get element's value by its key from an associative array. my array is:
my %array = a.a.a.a => "my name",
b.b.b.b => "my home",
c.c.c.c => "my city";
when I print
print say %array<b.b.b.b>;
or
print say %array{b.b.b.b};
it shows error, so how can I get this? code-test link: codepad link