7bb3a2b
1
2
3
4
5
6
function greet(name: string): string { return `Hello, ${name}!`; } document.body.innerHTML = greet("World");