
Nim forum
Forum użytkowników języka programowania Nim, miejsce do zadawania pytań, dzielenia się wiedzą i dyskusji na temat Nim.
Which are the companies currently using Nim in production?
Nim can do DSLs so efficiently. The strong typing, compile time range checks and that Nim compiles to optimized C is the icing on the cake. As Nim, on top of its nice looking code can work so easily with …
Neo, a new package manager for Nim - Nim forum
Hey all, I've been recently writing a new package manager for Nim. Nimble's gotten awfully slow for me lately, especially inside Nix shells. I would've loved to fix that, but unfortunately the Nimble source …
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.
Reasoning behind function call syntax in Nim. - Nim forum
The above code compiles and works. What is the reasoning behind this syntax? I understood echo "Hello, world!" and the other forms; but what is the reasoning behind allowing the above syntax? I'm …
Nimforms - A simple GUI library for Windows - Nim forum
I tried all or almost all of nim UI libraries and every single one has one problem or the other. When i read about winforms i was happy and eager to try. I am an amateur ( really amateur) programmer, all i …
Naylib - yet another raylib wrapper becomes available - Nim
Hello! I have a quick announcement about naylib yet another raylib wrapper. It took me a few months to get it right, but imo it was worth it. It offers type safety through wrapped functions, destructors, safe …
Cross-Compile Native Gui Apps with uing - Nim forum
Hi everyone! I noticed how much Nim changes the economics of software writing- you can write easily distributable GUI apps just as quickly as web apps, making GUI apps just as cheap. This is quite …
How to figure out why proc is not GC-safe? And is there a way to ... - Nim
The problem is that there are lots of code that build_jobs depends on and it's unclear what exactly causes the issue. Is there a way to discover what exactly in dependencies of build_jobs cause the …
Multiple configurations in Nimble - Nim forum
A different .nimble file in the tests directory + a nim.cfg file with a --path:../src/ directive sounds like a good way to do it for now. Please create an issue in Nimble's github repo if you would like to see …