method
v1_9_1_378 -
Show latest stable
- Class:
Buffering
print(*args)public
No documentation available.
# File ext/openssl/lib/openssl/buffering.rb, line 219
def print(*args)
s = ""
args.each{ |arg| s << arg.to_s }
do_write(s)
nil
end