class Raabro::Tree

def odd_children

def odd_children
  cs = []; @children.each_with_index { |c, i| cs << c if i.odd? }; cs
end