Constants may use CamelCase.

This commit is contained in:
Dominik Picheta 2014-08-30 03:16:53 -07:00
parent 14bea2cf3c
commit a68b81475a
1 changed files with 3 additions and 1 deletions

View File

@ -58,9 +58,11 @@ convention. Such style remains in place purely for legacy reasons, and will
be changed in the future.
- Type identifiers should be in CamelCase. All other identifiers should be in
pascalCase.
pascalCase with the exception of constants which **may** use CamelCase but
are not required to.
```nimrod
const aConstant = 42
const FOO_BAR = 4.2
var aVariable = "Meep"