pp(*objs) Instance Public methods Prints the given objs calling Object#inspect on each. See puts for more detail.
ppx(prefix, *objs) Instance Public methods Prints the given objs calling Object#inspect on each and appending the given prefix. See puts for more detail.
print(*opts) Instance Public methods Open this method to implement your own output method, raises a NotImplementedError if you don't define print in your own class.
printf(format, *opts) Instance Public methods Extends IO#printf to format the given opts for Kernel#sprintf using parse_printf_format
printn(*opts) Instance Public methods Prints the given opts, with a newline delimiter.
puts(*objs) Instance Public methods Calls print on each element in the given objs, followed by a newline character.
new() Class Public methods Creates a new input method object using Readline
encoding() Instance Public methods The external encoding for standard input.
eof?() Instance Public methods Whether the end of this input method has been reached, returns true if there is no more data to read. See IO#eof? for more information.
gets() Instance Public methods Reads the next line from this input method. See IO#gets for more information.
Page 444 of 11844