nose-pluto/bin/echo.ts
2025-09-29 21:18:39 -07:00

5 lines
106 B
TypeScript

// Monkey see, monkey do.
export default function (...args: string[]): string {
return args.join(" ")
}