Subj : Re: How to name variables in a program? To : comp.programming From : akarl Date : Mon Aug 08 2005 10:38 pm Flavius Vespasianus wrote: > In Object Pascal, the unit name is in the same namespace as the > declarations within. Therefore, it is common to use the prefix "T" before > type names to distinguish the unit from the classes within. So there, > some limited prefixes are necessary. The convention used in Oberon is the best one I've come across; Name spaces/modules use plural nouns and types use (corresponding) singular nouns. Example: MODULE Objects; TYPE Object = ... ... END Objects. August .