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
13 lines
164 B
JavaScript
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)
|