
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 …
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.
ImPlot library - Nim forum
I know Futhark is an excellent tool in tranlating header files from C language to Nim lang. Original ImPlot lib actually has been written in C++ language. In this case Futhark translates to Nim lang through …
Nim forum
Forum użytkowników języka programowania Nim, miejsce do zadawania pytań, dzielenia się wiedzą i dyskusji na temat Nim.
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 …
Functional Programming in Nim
Hello all, After learning some Haskell for class I realized that the functional programming paradigm isn't completely at odds with Nim. Nim supports pure functions (so long as you don't use mutable …
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 …
Tooling Update: Sep, 2024 - Nim forum
We have also enriched the Nim Panel in the vscode extension with more information about the nimlangserver status, such as Pending Requests and Project Errors, which should help diagnosing …
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 …
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 type T has been …