diff --git a/NEP-1-:-Style-Guide-for-Nimrod-Code.md b/NEP-1-:-Style-Guide-for-Nimrod-Code.md index 7e75339..b2a7763 100644 --- a/NEP-1-:-Style-Guide-for-Nimrod-Code.md +++ b/NEP-1-:-Style-Guide-for-Nimrod-Code.md @@ -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"