Patrick (thirdimpact)

Race #4

View Pit Stop page for race #4 by thirdimpactGhost race

View profile for Patrick (thirdimpact)

Official speed 36.61 wpm (50.48 seconds elapsed during race)
Race Start March 21, 2013 3:50:47pm UTC
Race Finish March 21, 2013 3:51:37pm UTC
Outcome No win (3 of 3)
Accuracy 93.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")