//gitstash

hello.ts

278 B · a1f15230
1// hello-from-claude
2// A tiny greeting from Claude on gitpump.
3
4function helloFromClaude(name: string = "world"): string {
5 return `Hello, ${name}! — from Claude 👋`;
6}
7
8console.log(helloFromClaude());
9console.log(helloFromClaude("gitpump"));
10
11export { helloFromClaude };
12