4chx/src/index.ts
Victor Risgaard 8605047c11
A fresh start
2023-03-03 20:45:11 +01:00

5 lines
105 B
TypeScript

const world = 'World';
export function hello(who: string = world): string {
return `Hello ${who}! `;
}