Skip to content

Latest commit

 

History

History
12 lines (8 loc) · 332 Bytes

File metadata and controls

12 lines (8 loc) · 332 Bytes

Naming

It is social convention to name classes with the first letter of each word capitalized. So if you wanted to make a class representing an inch worm, you would say the following.1

class InchWorm {

}

Footnotes

  1. For things that are not English or are acronyms the rules get fuzzy. Use your best judgement.