Published: October 26, 2023

This is my very first post on this new blog! I'm excited to share my thoughts here.

Why a Blog?

I wanted a simple way to jot down ideas, share updates, and maybe even write short tutorials. Markdown makes it super easy to write content without worrying too much about complex HTML.

Features I like:

function greet(name) {
    console.log(`Hello, ${name}!`);
}
greet("World");