Jeff (smartpoints)

Race #3

View Pit Stop page for race #3 by smartpointsGhost race

View profile for Jeff (smartpoints)

Official speed 70.83 wpm (26.09 seconds elapsed during race)
Race Start December 27, 2012 1:08:09am UTC
Race Finish December 27, 2012 1:08:36am UTC
Outcome No win (2 of 2)
Opponents 1. christensent (92.34 wpm)
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")