module TablePrint::RowRecursion

def add_children(children)

def add_children(children)
  @children.concat children
  children.each { |c| c.parent = self }
  self
end