17 lines
237 B
Plaintext
Raw Normal View History

import sys
2025-01-31 12:11:39 +01:00
import thread
2025-02-02 17:04:58 +01:00
import time
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() {
sys.write(1, "[ ] start\n", 10)
2025-02-02 17:04:58 +01:00
time.sleep(10 * 1000 * 1000)
sys.write(1, "[x] end\n", 8)
sys.exit(0)
}