DDSA
Advertisement

2667. Create Hello World Function

2667.ts
TypeScript
function createHelloWorld() {
  return function (...args): string {
    return "Hello World";
  };
}

/**
 * const f = createHelloWorld();
 * f(); // "Hello World"
 */
Advertisement
Was this solution helpful?