@ryo It may be a meme language, but is anything specifically wrong with it, other than being developed by Google's controlled opposition?
@ryo
To me, it seems like one of the many new languages that is trying to be that C/C++ replacement along with Go, Zig, D, and Jai. People want a replacement because C suffers from the problem of being too simple yet difficult to use effectively (need to grasp pointers, learn how data is managed, etc.), while C++ has too many features tacked on over the years that it's difficult to fully learn. So everyone is trying to create a replacement with varying degrees of success.
>And so many who used .NET in the past who now have to rewrite their stuff again now that more people decided to switch to Linux, BSD, or macOS even.
Mono and .NET Core exists. C# is probably the most popular programming language for indie games. Of course, it's supported on Linux. I used C# on Linux up until recently. Only problem is that it's heavily frowned upon in the Linux community for obvious reasons and that compiled Mono/.NET applications still have .exe extensions which makes it confusing if you also use Wine.
@ryo Mono is slowly becoming deprecated. MonoGame is using .NET Core now outside of mobile platforms.
> People want a replacement because C suffers from the problem of being too simple yet difficult to use effectively (need to grasp pointers, learn how data is managed, etc.)
And none of these are that difficult to learn honestly.
Like so many people fear the lack of a garbage collector, even though it's basically just making use of the "free" command, just don't forget to call it before the end of the program.
Correct PHP even requires you to unset (the PHP counterpart for "free") variables, close SQL connections, use fclose if you use files, and so on, but very few PHP devs do so, and then they wonder why the memory usage is growing, and why they get DDoS'd.
So instead of learning to code properly, they resort to bloat like Cuckflare/Fastly and frameworks like Laravel/Symphony/CakePHP/whatever.
Because PHP is technically just a C framework for web development, very few people realize this, so they often make frameworks inside of frameworks inside of frameworks inside of frameworks inside of frameworks inside of frameworks inside of frameworks, and then they wonder why PHP sucks...