void func(basic); void do_something(Interesting, Awesome);
int main() { std::string str = "Test"; int x = 5;
std::thread t{func, str, std::ref(x)};
do_something(Enjoy);
t.join(); }
See All 265 Episodes of "Half Hour Intern"