← Back to context

Comment by glouwbug

6 months ago

I think the main appeal is subset lock-down and compile times. ~5000 lines in C gets me sub second iteration times, while ~5000 lines in C++ hits the 10 second mark. Including both iostream and format in C++ gets any project up into the ~1.5 second mark which kills my iteration interests.

Second to that I'd say the appeal is just watching something you've known for a long time grow slowly and steadily.

This, and the two pages of incomprehensible compiler spam you get when you make a typo in C++.

  • Depends pretty much on where you do such typo.

    If you mean templates, a kind of solved problem since C++17 with static_assert and enable_if, moreso in C++20 with concepts.