#include <iostream>
#include <thread>
#include <string>
using std::cout;
using std::endl;
void threadFunction(int n, std::string s)
{
cout << n << endl;
cout << s << endl;
}
int main()
{
int n = 10;
std::string s = "C++ Programming";
std::thread obj(threadFunction, n, s);
obj.join();
return 0;
}
/*
run:
10
C++ Programming
*/