class Raabro::Tree

def sublookup(name=nil)

def sublookup(name=nil)
  @children.each { |c| if n = c.lookup(name); return n; end }
  nil
end