I\'m interested in the different kinds of identifier cases, and what people call them. Do you know of any additions to this list, or other alternative names?
MyVariable : Pascal Case => Used for Class
MyVariable
Pascal Case
Class
myVariable : Camel Case => Used for variable at Java, C#, etc.
myVariable
Camel Case
variable
myvariable : Flat Case => Used for package at Java, etc.
myvariable
Flat Case
package
my_variable : Snake Case => Used for variable at Python, PHP, etc.
my_variable
Snake Case
my-variable : Kebab Case => Used for css
my-variable
Kebab Case
css