Tom (tgbrooks)

Race #4

View Pit Stop page for race #4 by tgbrooksGhost race

View profile for Tom (tgbrooks)

Official speed 74.69 wpm (24.74 seconds elapsed during race)
Race Start July 16, 2013 3:13:56am UTC
Race Finish July 16, 2013 3:14:21am UTC
Outcome Win (1 of 4)
Accuracy 97.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")