Some C++ code

Table of Contents

1. Introduction

Showing off a source code block:

#include <iostream>
#include <string>

int main(void) {
  std::string message = "Hello world";
  std::cout << message << std::endl;
  return 0;
}

Bye-bye now!