14 lines
162 B
Plaintext

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