mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
12 lines
206 B
Python
12 lines
206 B
Python
import time
|
|
import multiprocessing
|
|
|
|
|
|
def run(name):
|
|
print(name)
|
|
|
|
if __name__ == '__main__':
|
|
multiprocessing.Process(target=run, args=("subprocess",)).start()
|
|
while True:
|
|
time.sleep(0.1)
|