Advertisement
bwukki

Untitled

Apr 15th, 2018
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.27 KB | None | 0 0
  1. //main.cpp - compile with sets.cpp
  2. #include <iostream>
  3. #include "sets.h"
  4.  
  5. using namespace std;
  6.  
  7. void test(){
  8.     vector<int> x{0,1,2,3,4,5,6,7,8,9,10};
  9.     sets num1{x};
  10.     num1.printNum();
  11. }
  12.  
  13. int main()
  14. {
  15.     cout << "Hello world!" << endl;
  16.     return 0;
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement