RosettaCodeData/Task/Fork/Nim/fork.nim
2016-12-05 23:44:36 +01:00

11 lines
187 B
Nim

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