GoFor (goforbroke69)

Race #11

View Pit Stop page for race #11 by goforbroke69Ghost race

View profile for GoFor (goforbroke69)

Official speed 40.64 wpm (45.47 seconds elapsed during race)
Race Start May 22, 2012 11:56:43pm UTC
Race Finish May 22, 2012 11:57:28pm UTC
Outcome No win (3 of 3)
Accuracy 89.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")