Bug #10403 ยป 0001-puts-documentation-fix.patch
| io.c | ||
|---|---|---|
|
* ios.puts(obj, ...) -> nil
|
||
|
*
|
||
|
* Writes the given objects to <em>ios</em> as with
|
||
|
* <code>IO#print</code>. Writes a record separator (typically a
|
||
|
* newline) after any that do not already end with a newline sequence.
|
||
|
* <code>IO#print</code>. Writes a newline after any that do not already end
|
||
|
* with a newline sequence.
|
||
|
*
|
||
|
* If called with an array argument, writes each element on a new line.
|
||
|
* If called without arguments, outputs a single record separator.
|
||
|
*
|
||
|
* If called without arguments, outputs a single newline.
|
||
|
*
|
||
|
* $stdout.puts("this", "is", "a", "test")
|
||
|
*
|
||