brandon (bling1009)

Race #1

View Pit Stop page for race #1 by bling1009Ghost race

View profile for brandon (bling1009)

Official speed 39.35 wpm (46.96 seconds elapsed during race)
Race Start October 4, 2011 3:30:41am UTC
Race Finish October 4, 2011 3:31:28am UTC
Outcome No win (1 of 1)
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")