Skip to content

Instantly share code, notes, and snippets.

@Kwpolska
Created March 14, 2014 16:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Kwpolska/9551292 to your computer and use it in GitHub Desktop.
Save Kwpolska/9551292 to your computer and use it in GitHub Desktop.
import os
import sys
import time
pid = os.fork()
if pid == 0:
print('This is the child.')
time.sleep(1)
print('Time to die!')
else:
print('This is the parent. Insta-death!')
sys.exit(0)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment