6 lines
83 B
Python
6 lines
83 B
Python
|
|
import os
|
||
|
|
|
||
|
|
|
||
|
|
async def child_fn() -> str:
|
||
|
|
return f"child OK pid={os.getpid()}"
|