println?

R

Roger Pack

I'm wondering if someone could point out to me an equivalent of the java
System.out.println method in the ruby standard lib.

I.e.
println 1,2,3 # concatenates, adds "\n"

Thanks much.
=r
 
B

Brian Candler

print 1,2,3; puts

puts [1,2,3].to_s # ruby 1.8 only

puts [1,2,3].join

It is easy to make your own method which does any of these. The splat
operator is particularly helpful. e.g.

def println(*args)
print *args
puts
end
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
474,171
Messages
2,570,935
Members
47,472
Latest member
KarissaBor

Latest Threads

Top