Updated NEP 1 (markdown)
This commit is contained in:
parent
6f30eb7f56
commit
78c680d607
9
NEP-1.md
9
NEP-1.md
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue