import io import thread main() { for 0..3 { thread.create(work) } work() } work() { io.write("[ ] start\n") io.write("[x] end\n") }