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
pascalCase.
```nimrod
const
aConstant = 42
const aConstant = 42
var
aVariable = "Meep"
var aVariable = "Meep"
type
FooBar = object
type FooBar = object
```
- Members of enums should have an identifying prefix, such as an abbreviation