I saw a naming convention that I really like, in a code fragment Tracy Harms wrote.
Basically: verbs are camelCase (unless they are just one word - then they are all lower case). and other words are Capitalized. This is a really nice clue relating to how the parser works: the parser would resolve names beginning with a capital letter when it is referenced, it's only verbs which are resolved "lazily". Of course you still have to understand the word definition and something about the grammar where they are used, but looking at the code and inspecting data for examples is a great teacher there. Thanks, -- Raul ---------------------------------------------------------------------- For information about J forums see http://www.jsoftware.com/forums.htm
