Skip to content

Instantly share code, notes, and snippets.

@PhDP
PhDP / main.cc
Last active October 10, 2023 03:46
A simple tutorial on C++11's random number generators.
// Compile with:
// $ clang++ -O3 -std=C++11 main.cc -o main
#include <iostream>
#include <random> // The header for the generators.
#include <ctime> // To seed the generator.
using namespace std;
int main() {