Naming convention (programming): Difference between revisions

Content deleted Content added
m disambiguation link repair (You can help!)
m Multiple-word identifiers: Correct link to language article and not the gemstone.
Line 19:
 
* myFavoriteVariable (lower camel case: [[Java programming language|Java]] variable and method names)
* MyFavoriteVariable (upper camel case: [[Java programming language|Java]] class names, [[C Sharp|C#]] method, variable and class names, [[Ruby programming language|Ruby]] class names)
* my_favorite_variable (underscored: [[Python programming language|Python]] method names, [[Ruby programming language|Ruby]] method names)
* My_Favorite_Variable (capitalization and underscores as used in [[Ada programming language|Ada]])
* my-favorite-variable (dashed: some [[Lisp]] functions)