2025-02-09 14:14:41 +01:00
|
|
|
import io
|
2025-01-30 16:33:20 +01:00
|
|
|
import sys
|
2025-01-31 12:11:39 +01:00
|
|
|
import thread
|
2025-02-02 17:04:58 +01:00
|
|
|
import time
|
2025-01-30 16:33:20 +01:00
|
|
|
|
|
|
|
main() {
|
2025-01-31 12:11:39 +01:00
|
|
|
thread.create(work)
|
|
|
|
thread.create(work)
|
|
|
|
thread.create(work)
|
|
|
|
work()
|
2025-01-30 16:33:20 +01:00
|
|
|
}
|
|
|
|
|
2025-01-31 12:11:39 +01:00
|
|
|
work() {
|
2025-02-09 14:14:41 +01:00
|
|
|
io.out("[ ] start\n")
|
2025-02-02 17:04:58 +01:00
|
|
|
time.sleep(10 * 1000 * 1000)
|
2025-02-09 14:14:41 +01:00
|
|
|
io.out("[x] end\n")
|
2025-01-30 16:33:20 +01:00
|
|
|
sys.exit(0)
|
|
|
|
}
|