Updated Tips and tricks (textile)

This commit is contained in:
dom96 2013-01-24 09:03:20 -08:00
parent d5ec90f700
commit fd4c0bde64
1 changed files with 4 additions and 1 deletions

View File

@ -1,5 +1,8 @@
* Use "nimrod check myfile.nim" to check your program for errors, without code generation. This makes the process quicker.
h2. 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>
You can use the slanted quote string syntax if you need to use a reserved word as an identifier: <code>var `type`: int</code>
h2. Tricks with conditional compilation