12 13 14 15 16 17 18
# File 'lib/fnf/fifo.rb', line 12 def readline str = "" while ($_ = self.read(1)) != "\n" str << $_ end str << "\n" end