Skip to content

2667. Create Hello World Function 👍

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