2667. Create Hello World Function ¶ TypeScript 1 2 3 4 5function createHelloWorld() { return function (..._): string { return 'Hello World'; }; }