How to puts arguments in one line?

I want to make it like in Python, 4 example:

print(
    foobar,
    footree,
    foodrink
)

and it will be print in one line:

>>> "foobar, footree, foodrink"

In Ruby with the same code:

puts foobar,
     footree,
     foodrink

>>> "foobar"
... "footree"
... "foodrink" 

Yes, I can do it with print, like this, but it looks ugly:

puts  "foobar" +
      "foobar" +
      "foobar" +

>>> "foobar, footree, foodrink"

Thx in advance!

enter image description here

Edited. Now I have the following "Align the arguments of a method call if they span more than one line" and in terminal it output from a new line, I need it in one line.

>Solution :

>> a, b = "bar", "tree"
>> puts [a, b].join(", ")
bar, tree

or print:

>> print a, ", ", b, "\n"
bar, tree

Leave a Reply