nim-wiki/Tips-and-tricks.textile

13 lines
333 B
Plaintext
Raw Normal View History

2010-09-14 10:11:11 +00:00
h1. Using reserved words as identifiers
* You can use the slanted quote string syntax if you need to use a reserved word as an identifier: <code>var `type`: int</code>
h1. Tricks with conditional compilation
2010-09-14 10:11:15 +00:00
2010-09-14 10:11:13 +00:00
<pre>
2010-09-14 10:11:11 +00:00
const someFeature = True
when someFeature:
const someSubFeature = true
else:
const someSubFeature = false
2010-09-14 10:11:13 +00:00
</pre>