2026-09-27

Hello World

This is my first blog post.

I’m going to write about C++, systems programming, databases, and things I’m learning along the way.

A code example

#include <iostream>

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