Joshua (joshuawn)

Race #2

View Pit Stop page for race #2 by joshuawnGhost race

View profile for Joshua (joshuawn)

Official speed 61.69 wpm (29.96 seconds elapsed during race)
Race Start February 22, 2011 2:58:29am UTC
Race Finish February 22, 2011 2:58:58am UTC
Outcome Win (1 of 3)
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")