Nick (theblitz2007)

Race #33

View Pit Stop page for race #33 by theblitz2007Ghost race

View profile for Nick (theblitz2007)

Official speed 42.99 wpm (42.99 seconds elapsed during race)
Race Start July 15, 2017 8:29:45pm UTC
Race Finish July 15, 2017 8:30:28pm UTC
Outcome Win (1 of 3)
Accuracy 94.0%
Points 0.00
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")