From a68b81475a810db7c99c3e8a943d0d39398f80b0 Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Sat, 30 Aug 2014 03:16:53 -0700 Subject: [PATCH] Constants may use CamelCase. --- NEP-1-:-Style-Guide-for-Nimrod-Code.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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"