Hello World

intrometa

This is my first blog post. Welcome!

What to expect

I’ll be writing about:

  • Web development
  • Tools and workflows
  • Things I’m learning

Code example

Here’s a simple function:

function greet(name: string): string {
  return `Hello, ${name}!`;
}

console.log(greet('World'));

Stay tuned for more posts.