CliSite/commands/woo.ts

6 lines
97 B
TypeScript
Raw Normal View History

2022-06-12 09:38:38 +02:00
function woo(): string {
var buf = "";
buf += "Wee!\n";
return buf;
}
export { woo };