Hello World

Hi there 👋

Maybe, but really just maybe, a blog will be created here one day.

Ahh, yeah. You wanted a hello world program, right? Here you go:

#include <iostream>
int main() { 
    std::cout << "hello world!" << std::endl; 
    return EXIT_SUCCESS;
}