package editor type row struct { chars []rune } func NewRow() *row { return &row {} } func (r *row) Size() int { return len(r.chars) }