Nick (typing____)

Race #3

View Pit Stop page for race #3 by typing____Ghost race

View profile for Nick (typing____)

Official speed 33.90 wpm (54.51 seconds elapsed during race)
Race Start July 20, 2023 10:13:39pm UTC
Race Finish July 20, 2023 10:14:33pm UTC
Outcome No win (3 of 3)
Accuracy 93.0%
Points 11.86
Text #10002 (Length: 154 characters)

import os import sys def run(program, *args): pid = os.fork() if not pid: os.execvp(program, program + args) return os.wait()[0] run("python", "hello.py")