r (deroche1)

Race #74

View Pit Stop page for race #74 by deroche1Ghost race

View profile for r (deroche1)

Official speed 100.31 wpm (18.42 seconds elapsed during race)
Race Start February 16, 2019 7:51:17am UTC
Race Finish February 16, 2019 7:51:35am UTC
Outcome No win (3 of 3)
Accuracy 96.0%
Points 35.11
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")