nimrod -> nim

This commit is contained in:
Dennis Felsing 2015-02-03 09:10:15 +01:00
parent 61d9525f94
commit cbbff94c8d
1 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
* Use "nimrod check myfile.nim" to check your program for errors, without code generation. This makes the process quicker.
* Use "nim check myfile.nim" to check your program for errors, without code generation. This makes the process quicker.
## Using reserved words as identifiers
@ -24,8 +24,8 @@ when isMainModule:
```
#### Defining `useSomeFeature`
* Do it when you compile: `$ nimrod c -d:useSomeFeature myApp`
* Put it in the local `nimrod.cfg` file `define:useSomeFeature`
* Do it when you compile: `$ nim c -d:useSomeFeature myApp`
* Put it in the local `nim.cfg` file `define:useSomeFeature`
## How do I echo in a ``{.noSideEffects.}`` proc?