GCC 16 一键编译 import std 的程序 1.安装Fedora 44和gcc 16.1Fedora 44仓库默认是gcc 16.1直接dnf 安装即可2.一键编译 import std 的程序示例C程序import std; using namespace std; int main() { string name; print(Enter your name: ); getline(cin, name); println(Hello, {}!, name); return 0; }编译:g -stdc23 -fmodules --compile-std-module main.cpp -o app ./app或者使用-stdc26编译g -stdc26 -fmodules --compile-std-module main.cpp -o app ./app