7 lines
56 B
Ruby
7 lines
56 B
Ruby
|
|
pid = fork
|
||
|
|
if pid
|
||
|
|
# parent code
|
||
|
|
else
|
||
|
|
# child code
|
||
|
|
end
|