From 262c580ee77cc485ccef8960089fc5b64389a656 Mon Sep 17 00:00:00 2001 From: dom96 Date: Fri, 25 Jan 2013 13:17:45 -0800 Subject: [PATCH] Note about debuEcho --- Tips-and-tricks.textile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Tips-and-tricks.textile b/Tips-and-tricks.textile index 8b2cc35..b553180 100644 --- a/Tips-and-tricks.textile +++ b/Tips-and-tricks.textile @@ -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 -
+```nimrod
 const someFeature = True
 
 when someFeature:
   const someSubFeature = true
 else:
   const someSubFeature = false
-
\ No newline at end of file +``` + +h2. How do I echo in a ``{.noSideEffects.}`` proc? + +You can use ``debugEcho`` for this. \ No newline at end of file