16 lines
186 B
Plaintext
Raw Normal View History

import io
import sys
2025-01-31 12:11:39 +01:00
import thread
main() {
2025-01-31 12:11:39 +01:00
thread.create(work)
thread.create(work)
thread.create(work)
work()
}
2025-01-31 12:11:39 +01:00
work() {
io.out("[ ] start\n")
io.out("[x] end\n")
sys.exit(0)
}