Tyler (christensent)

Race #4

View Pit Stop page for race #4 by christensentGhost race

View profile for Tyler (christensent)

Official speed 69.89 wpm (26.44 seconds elapsed during race)
Race Start October 15, 2012 9:52:30pm UTC
Race Finish October 15, 2012 9:52:57pm UTC
Outcome No win (2 of 2)
Accuracy 92.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")