
Nim forum
Forum użytkowników języka programowania Nim, miejsce do zadawania pytań, dzielenia się wiedzą i dyskusji na temat Nim.
Official SDL3 wrapper repository? - Nim forum
Hello, just out of curiosity, are any Nim maintainers planning to update the official sdl2 wrapper repository to sdl3? https://github.com/nim-lang/sdl2/tree/master
JIT landed in nlvm - Nim forum
Or is Nim script significally faster when started? I haven't timed it, but I expect nimscript to the faster for small scripts (due to startup time) while nlvm would be faster for longer-running things - that said, the …
Tiny Lisp written in Nim? - Nim forum
Note that the lightweight, fast, and easy RPC route is sorta unique to Nim due to typed macros. Normal RPC systems in C++, Rust, Go, etc end up being behemoths like grpc or cap'n'proto. If you're …
Kirpi - Löve2D style 2D game framework for Nim - Nim forum
Another reason for this pragmatic approach is the number of abandoned projects in the Nim ecosystem. Even if this project were ever discontinued, it should still keep working thanks to choosing solid, well …
TinyCC/tcc vs zig cc compile-times/etc. - Nim forum
For example, with suggest.nim, uncached zigcc was 14.1 sec vs 1.19 sec for tcc -- 12X slower and a real human-noticeable difference. In short, a zig cc backend seems to really magnify "risk of …
Nim Windows installation experience sucks - Nim forum
choosenim doesn't have good tests that actually test the installation of a binary Nim version on windows from scratch and with installing mingw in the process the issue reporter is a bit reluctant with sharing …
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.
Which IDE to use in 2024? - Nim forum
But what tools Nim provide - for IDE to use and integrate with. I remember there were discussion and effort about: Nim Incremental Compilation, a key component to make IDE better, to give fast …
Understanding more complex generic types in Nim coming from …
I think nim's type system should be capable of this sort of thing but after reading the docs several times I'm unsure about how an Effect<A,E,R> type would be modeled. Any resources or input to help me …