On Thu, 05 Aug 2004 13:24:16 +0900, Jim Weirich wrote: > What surprises me about Ruby is the about of expressiveness you get, even > though you are limited to only one block per method call. You would think > that having the ability to pass multiple closures to a method would be a > big improvement, That's possible, but not in a block passing way (if that is what you mean). You can always create a closure using lambda and pass it to the method like any other value. Regards, KB