q/examples/thread/thread.q

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")
}