>>10215819I wouldn't really recommend Rust much, anything it can do C++ can do better. Even if C++ kinda sucks pretty bad too.
But Elixir is pretty cool for a lot of things I've tried with it so far, including web development. The paradigm of the language is asynchronous programming, and you use it for everything, including things like storing global state. It's a unique way of doing it that guarantees concurrent safety and I quite like it.
Like, you run threads (called "processes") that act as servers for other threads in the program.
It has a library called Phoenix for MVC web stuff that's pretty neat.
It's kinda a weird language, and not a typical way of doing things that you might be used to from other languages.
So far though I'd say it's worth poking at yeah.