Sumit (sumit91)

Race #4

View Pit Stop page for race #4 by sumit91Ghost race

View profile for Sumit (sumit91)

Official speed 47.83 wpm (38.64 seconds elapsed during race)
Race Start May 15, 2011 6:05:48am UTC
Race Finish May 15, 2011 6:06:27am UTC
Outcome Win (1 of 3)
Accuracy 91.0%
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")