mirror of
https://github.com/Estom/notes.git
synced 2026-02-03 18:44:19 +08:00
13 lines
168 B
C++
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;
|
|
}
|
|
|