From 50f5133057ea494b685bc07cd01a57e0ff05976e Mon Sep 17 00:00:00 2001 From: CPD MSBench Runner Date: Fri, 12 Jun 2026 21:39:45 +0000 Subject: [PATCH] Add farewell function to greet module Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- src/greet.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/greet.ts b/src/greet.ts index 08c455b..4a93ab1 100755 --- a/src/greet.ts +++ b/src/greet.ts @@ -1,3 +1,7 @@ export function greet(name: string): string { return `Hi, ${name}!`; } + +export function farewell(name: string): string { + return `Goodbye, ${name}!`; +}