From: James Edward Gray II Date: 2006-01-14T05:22:49+09:00 Subject: Re: [QUIZ.SUMMARY] Dice Roller (#61) On Jan 13, 2006, at 2:15 PM, J. Ryan Sobol wrote: > On Jan 13, 2006, at 3:03 PM, James Edward Gray II wrote: > >>> Does eval parse @src for each call() message? >> >> Yes. You pass lambda() a block of code that is executed each time >> the code it called. > > Executed yes. But when is it parsed / checked for valid grammar, > syntax, etc.? Did you mean to say that the block of code is parsed > AND executed for each call() it receives? lambda() doesn't imply that, but eval() does. It must be reparsed with each call. James Edward Gray II