Rohan (rohan43)

Race #2

View Pit Stop page for race #2 by rohan43Ghost race

View profile for Rohan (rohan43)

Official speed 41.45 wpm (44.58 seconds elapsed during race)
Race Start January 19, 2013 3:24:56pm UTC
Race Finish January 19, 2013 3:25:41pm UTC
Outcome Win (1 of 3)
Accuracy 89.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")