frontend/src/lib/vitest-examples/greet.ts (view raw)
1 2 3
export function greet(name: string): string { return 'Hello, ' + name + '!'; }