Hello World

Welcome to my new blog! This is a test post to make sure everything is working correctly — templates, syntax highlighting, and all the other bits and pieces that make a blog tick.

A code sample

function greet(name) {
  const message = `Hello, ${name}!`;
  console.log(message);
  return message;
}

// Let's greet the world
greet("World");