---
title: "Top-level `await` Example"
description: "Extracted example from RunJS Overview"
---

# RunJS Overview

## Top-level `await`

```jsx
async function test() {}
(async () => {
  await test();
})();
```
