From: "Andreas S." Date: 2007-10-20T04:10:11+09:00 Subject: Re: Is it always the norm to skip 'return'? Bernard Kenik wrote: > The only time you need to implicitly use 'return' is when you want the > value of a variable that was processed prior to the last statement. > > for example: > > y = some_method(alpha, beta) > > do_some_cleanup before returning > > return y You could also just write y without the return. -- Posted via http://www.ruby-forum.com/.