- or download this
my $address = {
Name => 'Bernd Dulfer',
...
]
};
print 'Other name: ', $address->{Name}, "\n";
- or download this
my %address = (
Name => 'Bernd Dulfer',
...
]
);
print 'Other name: ', %address->{Name}, "\n";
- or download this
syntax error at ./sixth.pl line 14, near "$address{Bernd"
Execution of ./sixth.pl aborted due to compilation errors.