First Hello World Post

12 August 2018

This is the first post and it has to start with an hello world example

#include <stdio>

int main(){
    std::cout << "Hello World" << std::endl;
}