Help for this page

Select Code to Download


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