(timjeffery44)

Race #38

View Pit Stop page for race #38 by timjeffery44Ghost race

View profile for (timjeffery44)

Official speed 48.05 wpm (38.46 seconds elapsed during race)
Race Start May 10, 2019 3:29:55am UTC
Race Finish May 10, 2019 3:30:33am UTC
Outcome No win (1 of 1)
Accuracy 93.0%
Points 16.82
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")