The reason it fails is because . is the string concatonation operator. So, to concatonate two arrays you have to be a bit more explicit. something like :
@c = (@a,@b);
# .. or , the better approach (faster)
push(@c,@b,@a);
update : corrected my stupid push mistake ... need to think before i submit. oops. thanks to those who noticed.
can't sleep clowns will eat me
-- MZSanford