Hello World

This is the first post on my new site. More to come.

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

console.log(greet("world"));