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
?
import std;
is a C++23 feature, that AFAIK no compiler has yet implemented.import std.core;
is a Microsoft specific module - UnholySheepbits/stdc++.h
. - Paul Sanders