guy (grayeyes)

Race #14

View Pit Stop page for race #14 by grayeyesGhost race

View profile for guy (grayeyes)

Official speed 55.43 wpm (33.34 seconds elapsed during race)
Race Start December 30, 2016 11:43:36am UTC
Race Finish December 30, 2016 11:44:09am UTC
Outcome No win (2 of 3)
Accuracy 87.0%
Points 0.00
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")