Jeff (jeffpc)

Race #6

View Pit Stop page for race #6 by jeffpcGhost race

View profile for Jeff (jeffpc)

Official speed 37.15 wpm (49.74 seconds elapsed during race)
Race Start February 8, 2011 5:23:54am UTC
Race Finish February 8, 2011 5:24:44am UTC
Outcome No win (1 of 1)
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")