15 lines
195 B
Plaintext
Raw Normal View History

import sys
2025-01-31 11:11:39 +00:00
import thread
main() {
2025-01-31 11:11:39 +00:00
thread.create(work)
thread.create(work)
thread.create(work)
work()
}
2025-01-31 11:11:39 +00:00
work() {
sys.write(1, "[ ] start\n", 10)
sys.write(1, "[x] end\n", 8)
sys.exit(0)
}