wx-compiler/test/vector.cpp
2023-06-07 20:24:14 +08:00

12 lines
196 B
C++

#include <iostream>
#include <vector>
using namespace std;
int main(void) {
vector<string> t;
t.push_back("123456");
t.push_back("7890");
cout << t.at(0) << endl;
return 0;
}