method

getc

v1_8_7_330 - Show latest stable - Class: IO
getc()
public

Gets the next 8-bit byte (0..255) from ios. Returns nil if called at end of file.

f = File.new("testfile")
f.getc   #=> 84
f.getc   #=> 104