Note about debuEcho

This commit is contained in:
dom96 2013-01-25 13:17:45 -08:00
parent fc69ac0492
commit 262c580ee7
1 changed files with 6 additions and 2 deletions

View File

@ -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 h2. Tricks with conditional compilation
<pre> ```nimrod
const someFeature = True const someFeature = True
when someFeature: when someFeature:
const someSubFeature = true const someSubFeature = true
else: else:
const someSubFeature = false const someSubFeature = false
</pre> ```
h2. How do I echo in a ``{.noSideEffects.}`` proc?
You can use ``debugEcho`` for this.