whdemo / src /index.ts
Charlie
update files
7bb3a2b
raw
history blame
112 Bytes
function greet(name: string): string {
return `Hello, ${name}!`;
}
document.body.innerHTML = greet("World");