|
|
|
|
|
by bluGill
575 days ago
|
|
> I think putting C++ in maintenance mode and keep it as a "legacy" language is the way to go That is not possible. The the following function in C++ std::vector<something> doSomething(std::string); Simple enough, memory safe (at least the interface, who knows what happens inside), performant, but how do you call that function from anything else? If you want to use anything else with C++ it needs to speak C++ and the means vector and string needs to interoperate. |
|