1let count = 0;
2
3async function meow() {
4 count++;
5 return 'hi';
6}
7
8async function server() {
9 return await meow();
10}
11
12async function main() {
13 await server();
14}
15
16for (let i = 0; i < 10000; i++) {
17 void main();
18}
19
20console.log('done', count);