Edgar (egonzalez0787)

Race #4

View Pit Stop page for race #4 by egonzalez0787Ghost race

View profile for Edgar (egonzalez0787)

Official speed 33.06 wpm (55.90 seconds elapsed during race)
Race Start May 29, 2011 5:10:35am UTC
Race Finish May 29, 2011 5:11:31am UTC
Outcome No win (1 of 1)
Accuracy 91.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")