Joshua (joshuawn)

Race #1

View Pit Stop page for race #1 by joshuawnGhost race

View profile for Joshua (joshuawn)

Official speed 59.25 wpm (31.19 seconds elapsed during race)
Race Start February 22, 2011 2:57:21am UTC
Race Finish February 22, 2011 2:57:52am 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")