Saurabh (saurabhjain)

Race #4

View Pit Stop page for race #4 by saurabhjainGhost race

View profile for Saurabh (saurabhjain)

Official speed 25.04 wpm (73.80 seconds elapsed during race)
Race Start January 28, 2011 11:36:56am UTC
Race Finish January 28, 2011 11:38:10am 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")