Skip to content

Instantly share code, notes, and snippets.

View jorgbrown's full-sized avatar

Jorg Brown jorgbrown

View GitHub Profile
@jorgbrown
jorgbrown / main.cc
Last active May 4, 2018 16:37 — forked from PhDP/main.cc
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() {