Baron (littlebear)

Race #1

View Pit Stop page for race #1 by littlebearGhost race

View profile for Baron (littlebear)

Official speed 32.43 wpm (56.98 seconds elapsed during race)
Race Start January 29, 2011 8:42:09pm UTC
Race Finish January 29, 2011 8:43:06pm UTC
Outcome No win (3 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")