This commit is contained in:
2026-01-25 04:58:39 +01:00
parent 957e3a4762
commit 2e425571ca
139 changed files with 5078 additions and 73 deletions
+11
View File
@@ -0,0 +1,11 @@
import "scheduler" for Scheduler
import "timer" for Timer
class Helper {
static run() {
await Timer.sleep(1)
return "completed"
}
}
System.print(Helper.run()) // expect: completed