Hi,
I would like to duplicate (or triplicate) every member of my array, how should I do?
By instance, @array = (a,b,c,d), I want to obtain @array_final = (a,a,b,b,c,c,d,d)
So in the end it would double (or triple) the number of member in my array.
Thank you in advance!