Help for this page

Select Code to Download


  1. or download this
    # Dereference and copy contents
    my @executions = @{ $jobInfo->{'content'}{'executions'} }; 
    ...
    my $executions = $jobInfo->{'content'}{'executions'};
    print scalar @$executions, "\n";
    print "element 0 is ", $executions->[0], "\n";