What kind of Perl type are these? hash?

Don J

New member
Hi What are the difference for the following in perl? I know the first one is a hash but what about the second one? Is it the same? Thanks.

$data_a{'name'} = "Don";

$data_a->{name} = "Don";
 
Back
Top