- or download this
foreach ($self->{'sections'})
{
..use $_ here to do stuff..
}
- or download this
print ref($_);
- or download this
my $val = $_;
...
return 'obj';
}
}
- or download this
my $sections = (qx!rabin -Svv $filename!);
my @detected_sections = ();
...
push (@detected_sections, %section_int);
}
$report->{'sections'} = @detected_sections;