(keegant)

Race #66

View Pit Stop page for race #66 by keegantGhost race

View profile for (keegant)

Official speed 107.55 wpm (17.18 seconds elapsed during race)
Race Start June 19, 2019 6:58:58pm UTC
Race Finish June 19, 2019 6:59:15pm UTC
Outcome No win (1 of 1)
Accuracy 99.0%
Points 37.64
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")