joejoe (under2x)

Race #5

View Pit Stop page for race #5 by under2xGhost race

View profile for joejoe (under2x)

Official speed 56.06 wpm (32.96 seconds elapsed during race)
Race Start April 26, 2011 5:51:36am UTC
Race Finish April 26, 2011 5:52:09am 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")