nimrod -> nim
This commit is contained in:
parent
61d9525f94
commit
cbbff94c8d
|
@ -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
|
## Using reserved words as identifiers
|
||||||
|
|
||||||
|
@ -24,8 +24,8 @@ when isMainModule:
|
||||||
```
|
```
|
||||||
|
|
||||||
#### Defining `useSomeFeature`
|
#### Defining `useSomeFeature`
|
||||||
* Do it when you compile: `$ nimrod c -d:useSomeFeature myApp`
|
* Do it when you compile: `$ nim c -d:useSomeFeature myApp`
|
||||||
* Put it in the local `nimrod.cfg` file `define:useSomeFeature`
|
* Put it in the local `nim.cfg` file `define:useSomeFeature`
|
||||||
|
|
||||||
## How do I echo in a ``{.noSideEffects.}`` proc?
|
## How do I echo in a ``{.noSideEffects.}`` proc?
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue