class HighLine::Simulate

def getbyte

the next line of the script
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