Files
pide/script/test/test_proc.py
2022-08-23 15:13:14 +02:00

14 lines
251 B
Python

def f(name):
print ("Enter")
with open('/Users/gobbo_a/readme.txt', 'w') as f:
f.write('hello' )
print('hello', name)
p = mp.Process(target=f, args=('bob',))
p.start()
print ("STARTED")
p.join()
print ("JOINED -> ", p.exitcode)