Sweet Lord!

Daniel Schierbeck wrote:

I think he was trying to say that there are times when `yield' is the best choice, and there are times when `&block' is. It all depends on the situation.

;D

Right.

yield is better when you invoke a block immediately, but block.call is the _only_ way when you want to save the block for later execution.

lopex

or for recursive calls e.g.

lopex