#dump a hash
while (my ($key, $value) = each %target_list)
{
print "$key=>$value
";
}
#dump an array
for (@list){print "$_
";}
dump the contents of a data structure
Leave a Reply
You must be logged in to post a comment.
#dump a hash
while (my ($key, $value) = each %target_list)
{
print "$key=>$value
";
}
#dump an array
for (@list){print "$_
";}
You must be logged in to post a comment.