Hi,
I have 2 array's:
@array1(red,blue,green);
@array2(black,orange,white);
Is there any chance i can put in a hash like this %hash={red:black,blue:orange,green:white}: ?
I'm not looking for a fat comma (e.g. red=>black) format as this hash is passed onto a method which requires values exactly to be in this format red:black,blue:orange,green:white for the command to succeed.
Thanks in advance