I did the steps described here with MSVC2022 and was able to do:
import std.core;
but not
import std;
what is the difference? What is this std.core
?
I did the steps described here with MSVC2022 and was able to do:
import std.core;
but not
import std;
what is the difference? What is this std.core
?
I suggest you read this issue carefully, the problem is similar to yours.
And usually, In MSVS std
refers to namespace
, you could use the contents of std by adding using namespace std;
, such as std::cout, etc.