GoFor (goforbroke69)

Race #71

View Pit Stop page for race #71 by goforbroke69Ghost race

View profile for GoFor (goforbroke69)

Official speed 54.70 wpm (33.78 seconds elapsed during race)
Race Start June 8, 2012 7:42:03am UTC
Race Finish June 8, 2012 7:42:37am UTC
Outcome Win (1 of 3)
Accuracy 94.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")