in reply to Is this a hash?
Welcome to the monastery!
$thing is a hashref. You can read more about perlrefs perlref and perlreftut.
output isuse strict; use Data::Dumper; my $a = 5; my $b = 6; my $thing = { a => $a, b => $b, }; print Dumper($thing) . "\n";
$VAR1 = { 'a' => 5, 'b' => 6 };
|
|---|