From: Pit Capitain Date: 2007-08-07T03:28:33+09:00 Subject: Re: Beginner's tutorial and poor attempt at classes 2007/8/4, Gabriel Dragffy : > and I just discovered yet another way of getting to the same place!! > if value.between?(1, 6) > > IMO the prettiest code to read, but which one *should* be used, or is > it all OK so long as it works? Gabe, your version should be more efficient, because it doesn't create a new Range object. So go for it! Regards, Pit