On Friday, 3 June 2022 at 19:24:03 UTC, monkyyy wrote:
>Isnt c++ extremely slow? Like c++ adopts every feature and like thats .... fine; but it can never be good
No, C++ is similar to C in performance, in theory C++ could do better than C because of stricter typing, but I don’t think compilers exploit that. It would break existing code...
Most new C++ features are either syntax sugar or library additions, relatively few new features. Although stackless coroutines is a major recent one.