Code blocks

TypeScript code:

async function getString(): Promise<string> {
  return "Hello World!"; // Nice
}

const data = await getString();