til

Run async function on top level

(async() => {
  console.log('before start');
  await start();
  console.log('after start');
})();