in reply to pass several arguments to a subroutine
$status->jobs_terminate(\%hoh, \@del_ids); sub jobs_terminate { my $self = shift; my ($hoh, $del_ids) = @_; print Dumper $hoh; foreach my $id (@{$del_ids}) { print $id; } } [download]