print(*args)
Writes args to the stream.
See IO#print for full details.
# File ext/openssl/lib/openssl/buffering.rb, line 419 def print(*args) s = "" args.each{ |arg| s << arg.to_s } do_write(s) nil end