From e0a8c5c79bc7ac39a99898d6ef01c0788a88b285 Mon Sep 17 00:00:00 2001 From: "exercism-solutions-syncer[bot]" <211797793+exercism-solutions-syncer[bot]@users.noreply.github.com> Date: Tue, 3 Mar 2026 17:40:14 +0000 Subject: [PATCH] [Sync Iteration] typescript/two-fer/2 --- solutions/typescript/two-fer/2/two-fer.ts | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 solutions/typescript/two-fer/2/two-fer.ts diff --git a/solutions/typescript/two-fer/2/two-fer.ts b/solutions/typescript/two-fer/2/two-fer.ts new file mode 100644 index 0000000..c606c4c --- /dev/null +++ b/solutions/typescript/two-fer/2/two-fer.ts @@ -0,0 +1,8 @@ +/** + * This stub is provided to make it straightforward to get started. + */ + +export function twoFer(name: string = "you"): string { + return `One for ${name}, one for me.` + +}