Hello world

Every now and then I'll post some findings in programming and math, ranging from solutions to Project Euler exercises to numerical methods in partial differential equations.

March 9, 2017 - 1 minute read -
blog
#include <iostream>

int main()
{
  std::cout << "Hello world\n";
}