> But how do I directly access one array value from the reference to the
> array?
>
> print "DEBUG TEST @$avg_resp_time[0]\n";        Fails
> print "DEBUG TEST @$avg_resp_time->[0]\n";    Fails
> print "DEBUG TEST @{$avg_resp_time[0]}\n";    Fails
>

Why don't just
print "DEBUG TEST $avg_resp_time[0]" ; # Is that you what you want ?


>                    avg_resp_time        =>      [ qw(@$avg_resp_time[0]
>                                                      @$avg_resp_time[1]
>                                                      @$avg_resp_time[2]
>                                                      @$avg_resp_time[3]
>                                                      @$avg_resp_time[4]
>                                                      @$avg_resp_time[5]
>
                                                     @$avg_resp_time[6]) ],

may be :
avg_resp_time => \@avg_resp_time,  # Is that ok ?

Rgds,
Connie




-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to