|
|
|
|
|
by ncmncm
1467 days ago
|
|
If coding C++ feels like fighting "bureaucratic overhead", I promise you are Doing It Wrong. The type system should be performing the overhead, on your behalf, at compile time, leaving your attention for the actual problem. C++ coded like C or like Java will be exactly as miserable as coding C or Java, but that is entirely a matter of choice. |
|
In contrast, Python (and other dynamically-typed languages) avoid all of that.
In addition, the compile-time cost of all this is significant. Cup-of-coffee builds are a definite burden on productivity.