mt19937 example c++

include

include

int main() { std::mt19937 mt(std::random_device{}()); std::cout << "Random number: " << mt() << std::endl; return 0; }