Updated NEP 1 (markdown)

This commit is contained in:
Varriount 2014-07-18 14:29:15 -07:00
parent 6f30eb7f56
commit 78c680d607
1 changed files with 3 additions and 6 deletions

View File

@ -21,14 +21,11 @@ General
- Type identifiers should be in CamelCase. All other identifiers should be in - Type identifiers should be in CamelCase. All other identifiers should be in
pascalCase. pascalCase.
```nimrod ```nimrod
const const aConstant = 42
aConstant = 42
var var aVariable = "Meep"
aVariable = "Meep"
type type FooBar = object
FooBar = object
``` ```
- Members of enums should have an identifying prefix, such as an abbreviation - Members of enums should have an identifying prefix, such as an abbreviation