Files
notes_estom/Vscode/C/hello.cpp
2021-04-12 23:21:45 +08:00

13 lines
168 B
C++

#include <iostream>
#include <vector>
using namespace std;
int main()
{
vector<int> vec;
vec.push_back(1);
cout << "hello world" << endl;
return 0;
}