GoFor (goforbroke69)

Race #76

View Pit Stop page for race #76 by goforbroke69Ghost race

View profile for GoFor (goforbroke69)

Official speed 62.94 wpm (29.36 seconds elapsed during race)
Race Start June 8, 2012 7:50:11am UTC
Race Finish June 8, 2012 7:50:40am UTC
Outcome Win (1 of 3)
Accuracy 97.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")