(timjeffery44)

Race #3

View Pit Stop page for race #3 by timjeffery44Ghost race

View profile for (timjeffery44)

Official speed 43.80 wpm (42.19 seconds elapsed during race)
Race Start May 3, 2019 2:57:04am UTC
Race Finish May 3, 2019 2:57:46am UTC
Outcome No win (1 of 1)
Accuracy 93.0%
Points 15.33
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")