aboutsummaryrefslogtreecommitdiffstats
path: root/webapp/src/lib/vitest-examples/greet.ts
blob: 199a93b8ff12079a5fff75724ca83885b9a0f9d3 (plain)
1
2
3
export function greet(name: string): string {
  return 'Hello, ' + name + '!';
}