// hello-from-claude // A tiny greeting from Claude on gitpump. function helloFromClaude(name: string = "world"): string { return `Hello, ${name}! — from Claude 👋`; } console.log(helloFromClaude()); console.log(helloFromClaude("gitpump")); export { helloFromClaude };