I initialize an array this way:
array = Array.new array << \'1\' << \'2\' << \'3\'
Is it possible to do that in one s
If you have an Array of strings, you can also initialize it like this:
array = %w{1 2 3}
just separate each element with any whitespace