module Kernel
Public Instance Methods
get_format(*args)
click to toggle source
# File lib/ext/kernel.rb, line 2 def get_format(*args) Device::IO.get_format(*args) end
print_last(buf)
click to toggle source
# File lib/ext/kernel.rb, line 10 def print_last(buf) Device::Display.print_line(buf, STDOUT.max_y - 1, 0) end
print_line(buf, row = 0, column = 0)
click to toggle source
# File lib/ext/kernel.rb, line 6 def print_line(buf, row = 0, column = 0) Device::Display.print_line(buf, row, column) end