MIRROR: javascript for 馃悳's, a tiny runtime with big ambitions
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at master 20 lines 246 B view raw
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);