
- Nim forum- Forum użytkowników języka programowania Nim, miejsce do zadawania pytań, dzielenia się wiedzą i dyskusji na temat Nim. 
- Nimony progress - Nim forum- This might not look impressive but it is (IMO): Nimony is a new Nim compiler which does not use much of the old codebase. A good dozen subsystems have been reimplemented from scratch: … 
- Cborious: Fast standards-compliant CBOR library for Nim 2.x- Announcing Cborious for Nim 2.x! What: Fast, standards-compliant CBOR library for Nim with streaming I/O, canonical/deterministic modes (RFC 8949), and compile-time encode/decode … 
- [RFC] Why use Nim? - Nim forum- Nim macros in particular allow manipulating the syntax tree to write custom DSL's, eliminate boilerplate, automatically generate bindings (nimterop) or command-line interfaces (cligen), … 
- Best practices for initializing objects? - Nim forum- An aspect of Nim that’s giving me trouble is ensuring that objects get initialized properly. I’ve gotten used to constructors in C++/Swift/TypeScript, which enforce that any instance of object … 
- GUI app with nim - Nim forum- Forum dyskusyjne dotyczące języka programowania Nim, gdzie użytkownicy mogą zadawać pytania, dzielić się wiedzą i omawiać różne aspekty tego języka. 
- Nimx vs Fidget - Nim forum- Hello, I'm doing my first GUI project in Nim (I'm new) and trying to pick a cross-platform library. I've settled on Nimx and Fidget, and now just have to pick the one. Some specific questions … 
- compile a nim single file to a single c file that only depends …- I have to manaully include "nimbase.h" All I want is to compile a nim single file to a single c file that only depends standard c header and lib Does anyone offer a help? Does nim compiler or … 
- How to set up/start a Project? - Nim forum- There's the Nim package manager Nimble and its README has a section on project structure. Also, if you use nimble init on the command line, it will create the structure for you to have an … 
- How to Efficiently Implement Microservices with Nim?- Nim compiles to a single executable so deploying once your have an automated, reproductible build system, is very straightforward. Scaling, well it depends what exactly you want to scale.