Why haven't you learned D, prog? It's easy to use, has amazingly powerful templates, supports many types of programming, and has an instantly recognizable syntax if you're familiar with any of the Algol-derived languages. But most important of all, it wasn't written by jews.
>>41 D does not fulfill the niche of C or C++ developers. It is a managed language, like Go.
The only major difference between D and C++ is garbage collection, even Bjarne Stroustrup said that C++ works well with garbage collection. gc adds a lot, you dont need stupid things like 'smart pointers' anymore, in fact gc allows you to make a safe subset within D that is guaranteed safe. But you can turn that off if you have to do unsafe systems level programming where unsafe types and pointers are used, basically putting D back to C++'s level.