Implemented loop iterators

This commit is contained in:
2025-02-19 17:52:15 +01:00
parent 1bc845e6f0
commit 7922cff7ba
17 changed files with 147 additions and 35 deletions

View File

@ -2,9 +2,10 @@ import io
import thread
main() {
thread.create(work)
thread.create(work)
thread.create(work)
loop 0..3 {
thread.create(work)
}
work()
}