I initialize an array this way:
array = Array.new array << \'1\' << \'2\' << \'3\'
Is it possible to do that in one s
To create such an array you could do:
array = ['1', '2', '3']