(timjeffery44)

Race #23

View Pit Stop page for race #23 by timjeffery44Ghost race

View profile for (timjeffery44)

Official speed 51.12 wpm (36.15 seconds elapsed during race)
Race Start May 7, 2019 4:41:42am UTC
Race Finish May 7, 2019 4:42:18am UTC
Outcome Win (1 of 3)
Accuracy 92.0%
Points 17.89
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")