class File

def initialize(path, mode = 'r')

def initialize(path, mode = 'r')
  @path = path
  @contents = nil
  @eof = false
  @lineno = 0
end