From: Avdi Grimm Date: 2008-03-04T06:40:13+09:00 Subject: Re: Why is this not implemented in Ruby On Mon, Mar 3, 2008 at 4:27 PM, Damjan Rems wrote: > Why oh why I can not omit parameter in the middle of statement? I am > forced to know its default value if I want to omit a parameter in the > middle or at the begining of the statement. Either rearrange your parameters to put the most likely to be omitted at the end, or if yo are still running into this issue even after you've re-ordered the parameters, use an options hash. -- Avdi