RosettaCodeData/Task/Fork/Nim/fork.nim

12 lines
187 B
Nim
Raw Permalink Normal View History

2016-12-05 23:44:36 +01:00
import posix
var pid = fork()
if pid < 0:
# error forking a child
elif pid > 0:
# parent, and pid is process id of child
else:
# child
quit()
# further Parent stuff here