Files
exercise-typescript/typescript/two-fer/two-fer.ts
2022-09-26 16:04:50 +02:00

7 lines
167 B
TypeScript

/**
* This stub is provided to make it straightforward to get started.
*/
export const twoFer = (name: string = "you"): string =>
`One for ${name}, one for me.`;