Saurabh (saurabhjain)

Race #14

View Pit Stop page for race #14 by saurabhjainGhost race

View profile for Saurabh (saurabhjain)

Official speed 28.25 wpm (65.42 seconds elapsed during race)
Race Start February 7, 2011 3:41:59pm UTC
Race Finish February 7, 2011 3:43:04pm UTC
Outcome No win (2 of 2)
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")