Jai (jaideepjr)

Race #8

View Pit Stop page for race #8 by jaideepjrGhost race

View profile for Jai (jaideepjr)

Official speed 53.27 wpm (34.69 seconds elapsed during race)
Race Start November 19, 2011 4:39:13pm UTC
Race Finish November 19, 2011 4:39:48pm UTC
Outcome No win (2 of 2)
Accuracy 93.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")