class RDoc::RubyLex

def identify_comment

def identify_comment
  @ltype = "#"
  comment = '#'
  while ch = getc
    # if ch == "\\" #"
    #   read_escape
    # end
    if ch == "\n"
      @ltype = nil
      ungetc
      break
    end
    comment << ch
  end
  return Token(TkCOMMENT, comment)
end