up vote 2 down vote favorite
share [g+] share [fb]

If I say

puts "Hello"

and decide to add an extra newline I need to do this:

puts "Hello\n"

Having this character in the string is ugly. Is there any way to do this without polluting my string?

link|improve this question
Actually, in order to add an extra newline you need to do puts "Hello \n\n" since puts` eats the first newline. I guess it assumes that you don't realize it will automatically add one. – Rob Sobers Jul 10 '11 at 16:57
feedback

5 Answers

up vote 8 down vote accepted

Just make another call to puts:

puts "Hello"
puts
link|improve this answer
feedback
puts "Hello",""
link|improve this answer
feedback

The reason why Ruby use \n for a newline is because its base on C where Ruby MRI is written in C and even JRuby is written in Java which is base on C++ which is base on C... you get the idea! So all these C-style languages use the \n for the new line.

You can always write your own method that act like puts but add new lines base upon a parameter to the method.

link|improve this answer
feedback

Well, I don't think an explicit newline is ugly. mipadi's answer is just fine as well. Just to throw another answer in, make an array of the lines then join the aray with a newline. :)

link|improve this answer
feedback

Do you think this looks nicer?


puts "Hello"+$/

</evil>

link|improve this answer
feedback

Your Answer

 
or
required, but never shown