Changes

Showing 1 changed file

+2-2
example.tsMM+2-2
View file
@@ -4,7 +4,7 @@ export interface Greeting {
44}
55
66export function greet({message, recipient}: Greeting): string {
7 return `${message}, ${recipient}.`;
7 return `${message}, ${recipient}!`;
88}
99
10console.log(greet({message: "Hello", recipient: "world"}));
10console.log(greet({message: "Hello", recipient: "Peruse"}));