Note about debuEcho
This commit is contained in:
parent
fc69ac0492
commit
262c580ee7
|
@ -6,11 +6,15 @@ You can use the slanted quote string syntax if you need to use a reserved word a
|
|||
|
||||
h2. Tricks with conditional compilation
|
||||
|
||||
<pre>
|
||||
```nimrod
|
||||
const someFeature = True
|
||||
|
||||
when someFeature:
|
||||
const someSubFeature = true
|
||||
else:
|
||||
const someSubFeature = false
|
||||
</pre>
|
||||
```
|
||||
|
||||
h2. How do I echo in a ``{.noSideEffects.}`` proc?
|
||||
|
||||
You can use ``debugEcho`` for this.
|
Loading…
Reference in New Issue