#include <vector> #include <iostream> using namespace std; int main(int argc, char *argv[]) { vector<string> orig = {"foo", "bar"}; vector<string> v1 = orig; vector<string> v2 = orig; bool res = v1 == v2; if (res) std::cout << "true" << std::endl; else std::cout << "false" << std::endl; return 0; }
# | Change | User | Description | Committed | |
---|---|---|---|---|---|
#1 | 15129 | zachwhaley | Add practice directory |