This example illustrates two 'generators' that walk a tree, one in pre-order
and another in post-order.
A generator is an iterator that generates a value (in this
case the nodes of the tree) each time its execute() method
'yields' a value.
Also, @see kilim.examples.Fib