Has anyone played with V (https://vlang.io/)? Is it any good? And relatedly, are there any other C++/Rust competitors to check out (Iām thinking e.g. Jai and Lobster)?
r
Ray Imber
02/19/2021, 6:42 AM
V got a lot of bad press when it first announced because it overpromised, under-delivered, and had a very caustic founder that fought with everyone... But it's apparently smoothed out since then. Don't how good it is now.
Now I'll plug my favorite: Nim. Similar niche, systems level language, but with lisp style macros. (And looks more like Python or Pascal.)
There is also Zig, Odin, and D-lang in the alternative systems language space.
š 3
e
Emmanuel Oga
02/19/2021, 6:45 AM
Scopes "...was started as an alternative to C++ for programming computer games and related tools" ... "is written in about 30k lines of C++ code, supports a LLVM as well as a SPIR-V backend (targeting both CPU and GPU with a single codebase), and exports a minimal runtime environment" ... "The language is expression-based, but primarily imperative. The syntactical style marries concepts from Scheme and Python".
So yeah, perhaps check it out š I haven't play with it yet but I keep an eye over it.
amiga tick 3
r
Ray Imber
02/19/2021, 6:45 AM
I always forget about Scopes! That is a really neat language too! š
e
Emmanuel Oga
02/19/2021, 6:48 AM
it sounds very interesting, but also a lil esoteric and mostly a one man project which makes it a bit risky. In that regard, Nim is a lot more established already. Me personally, I'm leaning toward Kotlin... In fact, if one considers Kotlin/Native, perhaps it could be put in this list. I'm sure there must be a way to escape the garbage collector.