q/examples/thread/thread.q
2025-02-16 11:31:31 +01:00

14 lines
No EOL
162 B
Text

import io
import thread
main() {
thread.create(work)
thread.create(work)
thread.create(work)
work()
}
work() {
io.out("[ ] start\n")
io.out("[x] end\n")
}