Hello World

The first post — what this blog is about and what to expect.

Welcome to the blog. Here's some code:

const greet = (name: string): string => `Hello, ${name}!`
console.log(greet('world'))