Earlier quoted context omitted.
Combine that most CS students learn many languages with LLMs and coding agents and the size of the ecosystem isn't quite as important as it used to be. New hires can be productive from day 1. Missing libraries are relatively easy to add. Moreover the language characteristics can be more useful than ever: fast running, fast compiling, typed, easy to read, etc.
Yeah I think LLMs really help with the chicken-egg situation in language adoption. Contrary to many opinions that predict programming homogenizing around the big 3 languages that exist today (because that's what the LLMs currently write) I think in the future more nice languages will gain adoption as they are written by LLMs, who as you note don't care about a lack of community surrounding those langs -- if they need…
NimConf 2026: Dates Announced, Registrations Open
21–30 of 33 posts
Re: NimConf 2026: Dates Announced, Registrations Open
#22Do nim programmers not see the need for abstracting out behavior in a manner that different implementations can be switched somewhere else, or is there different idiomatic way to handle this?
Re: NimConf 2026: Dates Announced, Registrations Open
#23I should give a talk. About what however? I’ve been happy with my progress on FigDraw (1), a 2D UI scene renderer using SDFs. Even made my own neovim ui shell with it! 1: https://github.com/elcritch/figdraw
Re: NimConf 2026: Dates Announced, Registrations Open
#24I like the nim language, but the lack of interfaces has been a bit of a turn-off for me. Do nim programmers not see the need for abstracting out behavior in a manner that different implementations can be switched somewhere else, or is there different idiomatic way to handle this?
Re: NimConf 2026: Dates Announced, Registrations Open
#25Nim seems to be picking up a lot lately.
It is another niche language looking for a project to kick off adoption.
In practice, it's turned out to be an "expert's tool" that's more expressive-convenient than C/++ to do all manner of things in the realm of systems programming, from embedded to HPC. And it's got great C/++ interop, so you can continue to leverage those software ecosystems.
In that respect, I'd say the biggest boon, rather than a killer project, would be for a famous programmer or shop to publicly and loudly adopt it as their everyday language, shouting its name for several years and saying things like "Wish we had started using this years ago, would have been so much better, look at all of these great apps and libraries we've been able to create and maintain more easily than if we'd stuck with C/++/Go/Rust/Swift!"
Re: NimConf 2026: Dates Announced, Registrations Open
#26I like the nim language, but the lack of interfaces has been a bit of a turn-off for me. Do nim programmers not see the need for abstracting out behavior in a manner that different implementations can be switched somewhere else, or is there different idiomatic way to handle this?
Re: NimConf 2026: Dates Announced, Registrations Open
#27Earlier quoted context omitted.
It is another niche language looking for a project to kick off adoption.
The creator has been consistently clear in his take on "Why Nim?" It's a general purpose systems programming language, favoring procedural style, that's superior (or aims to be) in a variety of ways compared to whatever else you've been using. Hubris? Maybe. In practice, it's turned out to be an "expert's tool" that's more expressive-convenient than C/++ to do all manner of things in the realm of systems programming,…
Every year millions of university students design new languages across the globe on their compiler classes.
To productise any of them, there is a whole ecosystem that needs to be added on top, editors, graphical debugging, packages, AI tooling....
Re: NimConf 2026: Dates Announced, Registrations Open
#28I like the nim language, but the lack of interfaces has been a bit of a turn-off for me. Do nim programmers not see the need for abstracting out behavior in a manner that different implementations can be switched somewhere else, or is there different idiomatic way to handle this?
But as others said already, Nimony (codename for the next Nim iteration) introduces revamped concepts which should be even more convenient.
Re: NimConf 2026: Dates Announced, Registrations Open
#29Such a pity that this is an online-only conference. Does anyone know of an IRL conference or meetup on Nim, preferably in EU?
Re: NimConf 2026: Dates Announced, Registrations Open
#30Earlier quoted context omitted.
Combine that most CS students learn many languages with LLMs and coding agents and the size of the ecosystem isn't quite as important as it used to be. New hires can be productive from day 1. Missing libraries are relatively easy to add. Moreover the language characteristics can be more useful than ever: fast running, fast compiling, typed, easy to read, etc.
Yeah I think LLMs really help with the chicken-egg situation in language adoption. Contrary to many opinions that predict programming homogenizing around the big 3 languages that exist today (because that's what the LLMs currently write) I think in the future more nice languages will gain adoption as they are written by LLMs, who as you note don't care about a lack of community surrounding those langs -- if they need…
Finally, due to AI market share pressure, JITs in Python are a real thing, after all those years of PyPy being largely ignored.