Hello to all,
Having to arrays of the same size like below.
A = ["SL","MW","OP"]
B = ["RU","YF","L2"]
How can I concatenate in columns to print in parallel like below?
SL - RU
MW - YF
OP - L2
I've tried with code below but is printing all in one column
puts A << "-" << B
Thanks in advance for any help.