GoFor (goforbroke69)

Race #80

View Pit Stop page for race #80 by goforbroke69Ghost race

View profile for GoFor (goforbroke69)

Official speed 60.69 wpm (30.45 seconds elapsed during race)
Race Start June 8, 2012 7:56:59am UTC
Race Finish June 8, 2012 7:57:29am UTC
Outcome No win (3 of 3)
Accuracy 96.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")