Thanks for all the help for the previous quesions.

The question:

I passes array to one of the subroutine in the main perl file.

this is what is looks like: @ARGV= ('aa', 'bb');
    $start = &initStart(@ARGV);

sub initStart {

    while (@_) {

        do some thing.....
    }

    return %start;
}

It only pass the first value in @ARGV, that is 'aa', never get to 'bb'.

xiaoxia

Reply via email to