J
Jun Young Kim
hi, forks...
see this source
irb(main):015:0> puts "%*s" % [ "1", 2 ]
TypeError: can't convert String into Integer
from (irb):15:in `%'
from (irb):15
from :0
irb(main):016:0>
AIK, "%*s" is to use for concatenation of array.
but, I met the previous error message.
What's different ways I can take?
see this source
irb(main):015:0> puts "%*s" % [ "1", 2 ]
TypeError: can't convert String into Integer
from (irb):15:in `%'
from (irb):15
from :0
irb(main):016:0>
AIK, "%*s" is to use for concatenation of array.
but, I met the previous error message.
What's different ways I can take?