| I used to really like C++ ... back in 2000. That is before they added the kitchen sink into the language. I prefer my computer languages to be like Chess - a few rules but efficient and expressive. Like C. Why? Because everyone can read the code others on the team wrote, without being a language lawyer and knowing tons of esoteric features and magic. That has implications for maintainability and team productivity, and the bottom line for a business. Really, people, having basic coding style conventions instead of tons of language features wasn't so bad: int Foo_bar(struct Foo* this) {
// even this is readable
}
|