fork download
  1. #include <iostream>
  2. #include <string>
  3. #include <vector>
  4.  
  5. struct pidor
  6. {
  7. std::string board;
  8. int thread;
  9. int post;
  10. };
  11.  
  12. int main()
  13. {
  14. pidor pidorok = {"pr", 683899, 685384};
  15. std::vector<pidor> blacklist;
  16. blacklist.push_back(pidorok);
  17. return 0;
  18. }
Success #stdin #stdout 0s 3452KB
stdin
Standard input is empty
stdout
Standard output is empty