summaryrefslogtreecommitdiff
path: root/tests/012_async.ts
blob: 57ae355c25f608f7cdf6d8ed1e42bfee675a6894 (plain)
1
2
3
4
5
6
7
8
9
10
11
// Check that we can use the async keyword.
async function main() {
  await new Promise((resolve, reject) => {
    console.log("2");
    setTimeout(resolve, 100);
  });
  console.log("3");
}

console.log("1");
main();