naming convention
I often use three naming conventions:
upper flat case for constants
TWOWORDS
lower camelCase in Java and other OO languages
twoWords
snake_case in prolog like languages
two_words
Source: wikipedia naming convention
Last updated
Was this helpful?