add toolchain targets; better names for logging

This commit is contained in:
2025-12-07 18:49:05 -06:00
parent 107c4a5dce
commit 1bcdab64ff
10 changed files with 292 additions and 78 deletions

12
tests/delay.ce Normal file
View File

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