|
|
|
|
|
by jedbrown
5595 days ago
|
|
There is a very big difference between "too smart" and "too complicated". I think Haskell is dangerously close to the former category while C++ is firmly in the second. I appreciate "smart" for many tasks, but sometimes the operational semantics become important (e.g. it's performance-sensitive) and then you have to understand the stack at a pretty deep level and it can be awfully confusing why a tiny source-level change makes a big performance or space difference. Sometimes I pretty much know what assembly I want and it's much easier to make a C compiler produce it than to get GHC to produce it. |
|