The simplest Javascript async / await I could come up with
const main = async () => console.log(await Promise.resolve("Hello World!")); main();