I have a hash that has the following content, dumped via Data::Dumper
:
$VAR1 = [
0
];
What does that mean? I can´t seem to understand if that "0" is a key with nothing assigned to it or any other thing. Only clue is that I got this error below, which says a hash cannot be referenced by a zero string, is that right?
Can't use string ("0") as a HASH ref while "strict refs" in use at FOO.pm
The way this is assigned to an hash is obscure, since the code is restrict, but in some other cases, this same hash had something like
$VAR1 = [
{
'ExtraInfo->m_Fade_Notification_Timer' => 'RTPC',
'ExtraInfo->m_FarEndNESlot' => '28 MHz',
'ExtraInfo->m_Temperature_Ra2' => '',
'ExtraInfo->m_Path' => '',
'ExtraInfo->m_Radio_Terminal_Name' => 'ST01',
}
];