Saurabh (saurabhjain)

Race #22

View Pit Stop page for race #22 by saurabhjainGhost race

View profile for Saurabh (saurabhjain)

Official speed 33.32 wpm (55.46 seconds elapsed during race)
Race Start April 5, 2011 5:00:40pm UTC
Race Finish April 5, 2011 5:01:36pm 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")