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.` + +}