class HighLine::Simulate
def getbyte
Simulate StringIO#getbyte by shifting a single character off of
def getbyte line = gets return if line.empty? char = line.slice! 0 @strings.unshift line char end
def getbyte line = gets return if line.empty? char = line.slice! 0 @strings.unshift line char end