5 lines
120 B
TypeScript
Raw Normal View History

2019-08-14 16:02:02 +03:00
// main handler for an application
export function handler(input: string): string {
2019-08-14 16:04:48 +03:00
return "Hello, " + input + "!";
2019-08-14 16:02:02 +03:00
}