Mihir (sahasrabudhemg)

Race #69

View Pit Stop page for race #69 by sahasrabudhemgGhost race

View profile for Mihir (sahasrabudhemg)

Official speed 93.81 wpm (19.70 seconds elapsed during race)
Race Start April 14, 2012 6:21:39pm UTC
Race Finish April 14, 2012 6:21:59pm UTC
Outcome Win (1 of 3)
Accuracy 96.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")