MSVC has a similar feature that was available with VS 2019 and 2022, import std.core; that required /std:c++latest and /experimental:module.
Nice to see other compilers and the C++ ISO committee are getting around to enabling modules finally as well as logically.
Doing individual module imports didn't require experimental module support enabled and would work with /std:c++20.
To use the C++23 module import requires VS 2022 17.5 or later. Which I believe is still in preview status. I have 17.4.2 as the current public release.modules.