1
2
3
4
5
hello(recipient: string): void {
console.log(`Hello ${recipient}!`);
}

hello('World');