RosettaCodeData/Task/Fork/Ruby/fork-1.rb
2023-07-01 13:44:08 -04:00

6 lines
56 B
Ruby

pid = fork
if pid
# parent code
else
# child code
end