Skip to content

Instantly share code, notes, and snippets.

@espresso3389
Created December 16, 2017 15:04
Show Gist options
  • Save espresso3389/89298088da2ca0fee13103433544f886 to your computer and use it in GitHub Desktop.
Save espresso3389/89298088da2ca0fee13103433544f886 to your computer and use it in GitHub Desktop.
Random number sequence
int main()
{
std::mt19937 r;
for (;;)
std::printf("%d\n", r());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment