Hello World

intropersonal

Hello World

Welcome to my blog! This is my first post.

What to Expect

I'll be writing about:

  • Software development
  • Things I'm learning
  • Projects I'm working on

A Code Example

Here's some TypeScript to test syntax highlighting:

interface Post {
  title: string;
  date: string;
  excerpt: string;
  published: boolean;
  tags?: string[];
}
 
function greet(name: string): string {
  return `Hello, ${name}!`;
}
 
console.log(greet("World"));

Thanks for reading!

Enjoyed this post?

Subscribe to get notified when I publish new posts.