Saurabh (saurabhjain)

Race #19

View Pit Stop page for race #19 by saurabhjainGhost race

View profile for Saurabh (saurabhjain)

Official speed 29.80 wpm (62.01 seconds elapsed during race)
Race Start April 5, 2011 4:56:02pm UTC
Race Finish April 5, 2011 4:57:04pm 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")