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

greet('world')