-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Tips and tricks
dom96 edited this page Jan 25, 2013
·
24 revisions
- Use "nimrod check myfile.nim" to check your program for errors, without code generation. This makes the process quicker.
You can use the slanted quote string syntax if you need to use a reserved word as an identifier: var `type`: int
const someFeature = True
when someFeature:
const someSubFeature = true
else:
const someSubFeature = false
You can use debugEcho
for this.
Intro
Getting Started
- Install
- Docs
- Curated Packages
- Editor Support
- Unofficial FAQ
- Nim for C programmers
- Nim for Python programmers
- Nim for TypeScript programmers
- Nim for D programmers
- Nim for Java programmers
- Nim for Haskell programmers
Developing
- Build
- Contribute
- Creating a release
- Compiler module reference
- Consts defined by the compiler
- Debugging the compiler
- GitHub Actions/Travis CI/Circle CI/Appveyor
- GitLab CI setup
- Standard library and the JavaScript backend
Misc