CodeLibrary/02_vscode_Cplus_Project_20240420/20240420/main.cpp
2024-04-20 18:11:21 +08:00

8 lines
128 B
C++

#include <iostream>
using namespace std;
int main (){
cout << "Hello, World!" << endl;
system("pause");
return 0;
}