- or download this
item 1 # as read from file
$key = "k1";
...
$hash{ $key } = ( { $valname => [ $value, $type, $flag ] });
item N (indeterminate until runtime)
- or download this
k1 =>
vname1 => (v1, t1, f1)
...
k3 =>
vname3 => ( v3, t3, f3 )
- or download this
foreach $i (keys %hash)
{
...
print "$content[0] $content[1] $content[2]\n";
}
}