Zach Dennis <zdennis / mktec.com> wrote: > - you can use string interpolation, ex: "x: #{@myvar}" instead of > having to say "x:" + myvar' Ruby seems to lose here. The syntax #{@myvar} is a rare case of ugliness. > - ruby doesn't force you to have 1 file per public class, you can have > all the public classes you want in a file (not that you have to do this, > but it's a nice option to have) On the other hand, if you *want* to put each class in a file, you end up having to painfully "require" each file every time you want to access a class. Java can automatically find classes in the current package and load them. Or is just me? Is there a Ruby Way? Cheers, Navin.