Help for this page

Select Code to Download


  1. or download this
    sub add2arr {
        my ($value,@tmp) = @_;
    ...
        return @tmp;
    }
    # and call it like @tmp = add2arr($value,@tmp)
    
  2. or download this
    push(@tmp,$value)