joejoe (under2x)

Race #4

View Pit Stop page for race #4 by under2xGhost race

View profile for joejoe (under2x)

Official speed 57.28 wpm (32.26 seconds elapsed during race)
Race Start April 26, 2011 5:50:24am UTC
Race Finish April 26, 2011 5:50:56am 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")