Files
cell/tests/delay.js
John Alanbrook 95d3296dd9
Some checks failed
Build and Deploy / build-linux (push) Successful in 1m15s
Build and Deploy / package-dist (push) Has been cancelled
Build and Deploy / deploy-itch (push) Has been cancelled
Build and Deploy / deploy-gitea (push) Has been cancelled
Build and Deploy / build-windows (CLANG64) (push) Has been cancelled
wota now encodes at the C level; update dmon for macos 13; clean up many warnings
2025-03-20 17:25:48 -05:00

13 lines
164 B
JavaScript

var count = 0
function loop()
{
count++;
console.log(`loop ${count}`);
if (count < 60)
$_.delay(loop, 0.01);
else
$_.stop()
}
$_.delay(loop,0.01)