Justin (jpaupore)

Race #2

View Pit Stop page for race #2 by jpauporeGhost race

View profile for Justin (jpaupore)

Official speed 65.97 wpm (28.01 seconds elapsed during race)
Race Start February 1, 2011 7:07:26pm UTC
Race Finish February 1, 2011 7:07:54pm UTC
Outcome Win (1 of 5)
Opponents 3. liciti (50.03 wpm)
4. noronham (44.59 wpm)
5. jeffpc (35.31 wpm)
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")