当我使用 clang-format 以崇高的text3格式设置C ++代码时,收到了该错误iostream file not found
。
#include <iostream>
using namespace std;
int main(int argc, const char *argv[]) {
cout << "HELLO, Captain Teemo!" << endl;
return 0;
}
但是我可以使用Command + B运行c ++代码。
我还可以在命令行中编译c ++代码。