MrcredsAlex (mrcredsalex)

Race #2

View Pit Stop page for race #2 by mrcredsalexGhost race

View profile for MrcredsAlex (mrcredsalex)

Official speed 107.15 wpm (17.25 seconds elapsed during race)
Race Start January 31, 2011 10:19:47pm UTC
Race Finish January 31, 2011 10:20:04pm 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")