Hello, World!

As is customary for any computer scientist or programmer:

#include <iostream>

int main(int argc, char const *argv[])
{
    std::cout << "Hello, World!" << std::endl;
    return 0;
}