Hello, World
April 5, 2026Hi, I’m using this post to test how well my site handles markdown rendering. Feel free to entertain or amuse yourself with this, if you’ve got nothing else to do, that is.
Testing headings
This is content under the heading (h2).
Testing links and codeblocks
I might decide to have a few code snippets here and there, how does the site hold up?
class Robot {
public:
Robot(int width, int height) {
this->width = width;
this->height = height;
}
};
int moveEast(int distance) {
int new_x = x + distance;
int new_dist = 0;
if (new_x >= width) {
new_dist = new_x - (width - 1);
new_x = width - 1;
turn90Deg();
}
x = new_x;
return new_dist;
}
This snippet is from my solution to Walking Robot simulation II on LeetCode.
Testing Images

I think the styles are great! You should really find something else to do by the way.