Advertisement
tomasaccini

Untitled

Jul 15th, 2018
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.10 KB | None | 0 0
  1. int main() {
  2.     std::thread* t = std::thread(funcion);
  3.     t->join();
  4.     delete t;
  5.     return 0;s
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement