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